function conf_invio() {
		
     var nome  	   = document.modul.nome.value;
     var telefono  = document.modul.telefono.value;
     var servizio  = document.modul.servizio.value;	 
     var email     = document.modul.email.value;
     var messaggio = document.modul.messaggio.value;     
     var mail_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

		if ((nome == "") || (nome == "Nome") || (nome.length<"4")) {
           alert("Il campo NOME deve essere almeno di 4 caratteri.");
           document.modul.nome.focus();           
           return false;
        }

		else if ((servizio == "") || (servizio == "In cosa possiamo esserti utile")) {
           alert("Il campo SERVIZIO è obbligatorio.");
           document.modul.servizio.focus();           
           return false;
        }	

		else if ((telefono == "") || (telefono == "Numero di telefono")) {
           alert("Il campo TELEFONO è obbligatorio.");
           document.modul.telefono.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;
        }
		
		else if ((messaggio == "") || (messaggio == "il tuo messaggio qui...")) {
           alert("Il campo MESSAGGIO è obbligatorio.");
           document.modul.messaggio.focus();           
           return false;
        }

//INVIA IL modul
        else {
           document.modul.submit();
        }
     
  }