function Modulo3() {
	

	
     var contatto  = document.modulo.contatto.value;
     var nome      = document.modulo.nome.value;
     var indirizzo = document.modulo.indirizzo.value;
     var telefono  = document.modulo.telefono.value;
     var cellulare = document.modulo.cellulare.value;
     var email     = document.modulo.email.value;
     var conferma  = document.modulo.conferma.value;     
     
     var mail_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;

   if ((contatto == "") || (contatto == "undefined")) {
           alert("Il campo CONTATTO è obbligatorio.");
           document.modulo.contatto.focus();
           return false;        }

        else if ((nome == "") || (nome == "undefined")) {
           alert("Il campo NOME DELLA STRUTTURA è obbligatorio.");
           document.modulo.nome.focus();           
           return false;
        }
        else if ((indirizzo == "") || (indirizzo == "undefined")) {
           alert("Il campo INDIRIZZO è obbligatorio.");
           document.modulo.indirizzo.focus();           
           return false;
        }
        else if ((telefono == "") || (telefono == "undefined")) {
           alert("Il campo TELEFONO è obbligatorio.");
           document.modulo.telefono.focus();           
           return false;
        }
            else if ((conferma == "") || (conferma == "undefined")) {
           alert("Il codice di CONFERMA è obbligatorio.");
           document.conferma.telefono.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;
        }
        //INVIA IL MODULO
        else {
           document.modulo.submit();
        }
     
  }
