// JavaScript Document
  function Modulo() {
     // Variabili associate ai campi del modulo
     var nome = document.modulo.nome.value;
	 var phone = document.modulo.phone.value;
     var email = document.modulo.email.value;
 	 var comments = document.modulo.comments.value;
     // Espressione regolare dell'email
     var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
        //Effettua il controllo sul campo NOME
        if ((nome == "") || (nome == "undefined")) {
           alert("Il campo Nome è obbligatorio.");
           document.modulo.nome.focus();
           return false;
        }
		//Effettua il controllo sul campo PHONE
        if ((phone == "") || (phone == "undefined")) {
           alert("Il campo Phone è obbligatorio.");
           document.modulo.phone.focus();
           return false;
        }
        //INVIA IL MODULO
        else {
           document.modulo.action = "elabora_dati.php";
           document.modulo.submit();
        }
  }
 //-->