//Javascript

function popupInformativa(info) {
	window.open(info,"informative","width=710,height=540,scrollbars=yes,resizable=yes");
	return false;
}
						
function controlloform(){
	if (document.contact.from.value=="") {
		alert("You forgot to enter your E-mail");
	} else if (document.contact.mittente.value=="") {
		alert("You forgot to enter your Name");
	}else if (document.contact.indirizzo.value=="") {
		alert("You forgot to enter your Address");
	} else if (document.contact.citta.value=="") {
		alert("You forgot to enter the City");
	} else if (document.contact.prov.value=="") {
		alert("You forgot to enter the Province");
	} else if (document.contact.msg.value=="") {
		alert("You forgot to enter the Message");
	} else if(document.contact.accetto[0].checked){
		document.contact.submit();
	} else {
		alert("You have to accept to continue");
	}
	return false;
}

//Fine Javascript
