function conf_invio_contattaci() {
		
     var nome      = document.modulo.nome.value;
     var email     = document.modulo.email.value;
     var messaggio = document.modulo.messaggio.value;     
     var mail_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

 		if ((nome == "") || (nome == "undefined")) {
           alert("Il campo NOME è obbligatorio.");
           document.modulo.nome.focus();           
           return false;
        }
        else if (!mail_reg_exp.test(email) || (email == "") || (email == "undefined")) {
           alert("Inserire un indirizzo E-mail corretto.");
           document.modulo.email.focus();           
           return false;
        }
        else if ((messaggio == "") || (messaggio == "undefined")) {
           alert("Il campo MESSAGGIO è obbligatorio.");
           document.modulo.messaggio.focus();           
           return false;
        }		
        //INVIA IL MODULO
        else {
           document.modulo.submit();
        }
     
  }