function validazione(){
with(document.modulo) {
	if(Nome.value=="") {
	alert("Insert your name");
	Nome.focus();
	return false;
	}
	if(Cognome.value=="") {
	alert("Insert your  surname");
	Cognome.focus();
	return false;
	}
	if(Autorizzazione.checked=="") {
	alert("Authorization necessary for personal data managing");
	Autorizzazione.focus();
	return false;
	}
	
	if(Email.value=="") {
	alert("Insert your e-mail");
	Email.focus();
	return false;
	}
	var stato=true;
	if(Email.value.indexOf(" ")!=-1) {
	Email.focus();
	stato=false;
	}
	var chiocciola=Email.value.indexOf("@");
	if(chiocciola<2) {
	Email.focus();
	stato=false;
	}
	var punto=Email.value.indexOf(".", chiocciola);
	if(punto<chiocciola+3) {
	Email.focus();
	stato=false;
	}
	var lung=Email.value.length;
	if(lung-punto<3) {
	Email.focus();
	stato=false;
	}
	
	//if(stato) {
		//alert("E-mail valida");
	//}else{	

	if(stato==false) {
		alert("E-mail not valid");
	return stato;
	}
}
alert("The enquiry form has been completed, thank  you!");
return true;
}		
