function validazione(){
with(document.modulo) {
	if(Nome.value=="") {
	alert("Inserire il nome");
	Nome.focus();
	return false;
	}
	if(Cognome.value=="") {
	alert("Inserire il cognome");
	Cognome.focus();
	return false;
	}
	if(Autorizzazione.checked=="") {
	alert("Manca AUTORIZZAZIONE per il trattamento dei dati inseriti");
	Autorizzazione.focus();
	return false;
	}
	
	if(Email.value=="") {
	alert("Inserire l' 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 non valida");
	return stato;
	}
}
alert("Il modulo è completo, grazie");
return true;
}		