function conf_invio() {
		
     var nome  	   = document.modul.nome.value;
     var cognome   = document.modul.cognome.value;
      var email     = document.modul.email.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.modul.nome.focus();           
           return false;
        }

		else if ((cognome == "") || (cognome == "undefined")) {
           alert("Il campo COGNOME è obbligatorio.");
           document.modul.cognome.focus();           
           return false;
        }
        else if (!mail_reg_exp.test(email) || (email == "") || (email == "undefined")) {
           alert("Inserire un indirizzo E-mail corretto.");
           document.modul.email.focus();           
           return false;
        }
        //INVIA IL modul
        else {
           document.modul.submit();
        }
     
  }
