// JavaScript Document

  function Modulo() {

        if ((document.modulo.nome_cognome.value == "")) {
           alert("Il campo Nome e Cognome e obbligatorio");
           document.modulo.nome_cognome.focus();
           return false;
        }

          else if ((document.modulo.telefono.value == "")) {
           alert("Il campo Telefono e obbligatorio");
           document.modulo.telefono.focus();
           return false;
     	 }
		 else if ((document.modulo.email.value == "")) {
          alert("Il campo Email e obbligatorio");
          document.modulo.email.focus();
          return false;
        }
		
		else if ((document.modulo.privacy.value == "")) {
           alert("Il campo Privacy e obbligatorio");
           document.modulo.privacy.focus();
           return false;
        }
        else {
           document.modulo.action = "invia-contatti.php";
           document.modulo.submit();
        }
  }
 //-->
