// JavaScript Document
function controlla(richiesta) {
	if (richiesta.azienda.value == ""){
		alert("Please provide your Company.  ");
		richiesta.azienda.focus();return (false);
	}
	if (richiesta.nome.value == ""){
		alert("Please provide your First Name.  ");
		richiesta.nome.focus();return (false);
	}
	if (richiesta.cognome.value == ""){
		alert("Please provide your Last Name.  ");
		richiesta.cognome.focus();return (false);
	}
	if (richiesta.citta.value == ""){
		alert("Please provide Town.  ");
		richiesta.citta.focus();return (false);
	}
	if (richiesta.provincia.value == ""){
		alert("Please provide State.  ");
		richiesta.provincia.focus();return (false);
	}	
	if (richiesta.nazione.options[richiesta.nazione.selectedIndex].value == ""){
		alert("Please select Country.  ");
		richiesta.nazione.focus();return (false);
	}
	if (richiesta.telefono.value == ""){
		alert("Please provide Phone Number.  ");
		richiesta.telefono.focus();return (false);
	}
	if (richiesta.richiesta.value == ""){
		alert("Please provide Information Request.  ");
		richiesta.richiesta.focus();return (false);
	}
	if (richiesta.email.value == ""){
		alert("Please provide Email Address.  ");
		richiesta.email.focus();return (false);
	}
	var imail=richiesta.email.value;
	var poschioccia=imail.indexOf("@");
	var pospunto=imail.lastIndexOf(".");
	var len=imail.length;
	if ((poschioccia<1)||(pospunto<poschioccia+2)||(pospunto==len-1)){
		alert("Please provide a Valid Email Address.  ");
		richiesta.email.focus();return (false);
	}
	if (richiesta.accetta_privacy.checked==false){
		alert("To continue you must permit handling of your personal data");
		richiesta.accetta_privacy.focus();return (false);
	}
	return (true);
}
