<!--
function Manda() {

	 var nome = document.manda.nome.value;
	 var cognome = document.manda.cognome.value;
	 var email = document.manda.email.value;
	 var telefoni = document.manda.telefoni.value;
	 var messaggio = document.manda.messaggio.value;	 

	 var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

	//Controllo sul campo NOME
	if (!nome || (nome == "") || (nome == "undefined")) {
	   alert("Errore campo NOME");
	   document.manda.nome.focus();
	   return false;
	}
	//Controllo sul campo COGNOME
	if (!cognome || (cognome == "") || (cognome == "undefined")) {
	   alert("Errore campo COGNOME");
	   document.manda.cognome.focus();
	   return false;
	}
	//Controllo sul campo TELEFONO
	if (!telefoni || (telefoni == "") || (telefoni == "undefined")) {
	   alert("Errore campo TELEFONO");
	   document.manda.telefoni.focus();
	   return false;
	}
	//Controllo sul campo EMAIL
	if (!email_reg_exp.test(email) || (email == "") || (email == "undefined")) {
	   alert("Errore campo E-MAIL");
	   document.manda.email.focus();
	   return false;
	}
	//Controllo sul campo MESSAGGIO
	if (!messaggio || (messaggio == "") || (messaggio == "undefined")) {
	   alert("Errore campo MESSAGGIO");
	   document.manda.messaggio.focus();
	   return false;
	}
	//INVIA IL MODULO
	else {

	document.manda.action = "/service"+"/contat"+"ta"+"."+"asp";
	window.open('','detta','width=450,height=200,left=10,top=110,,status=no,toolbar=no,menubar=no,location=no');	
	document.manda.submit();

	}
}

//-->
