  function Modulo() {
		var mail  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	    if ((document.modulo.referente.value == "")) {
          alert("Il campo Referente è obbligatorio");
          document.modulo.referente.focus();
          return false;
        }
		else if ((document.modulo.email.value == "")) {
          alert("Il campo email è obbligatorio");
          document.modulo.email.focus();
          return false;
        }     else if (!mail.test(document.modulo.email.value)) {
          alert("Il campo email è errato");
          document.modulo.email.focus();
          return false;
        }
        else if ((document.modulo.descrizione.value == "")) {
          alert("Il campo descrizione è obbligatorio");
          document.modulo.descrizione.focus();
          return false;
        }
		else {
           document.modulo.action = "send_modulo_pagine.php";
           document.modulo.submit();
        }
  }
