<!--
function Modulo() {
     // Variabili associate ai campi del modulo
	 var nome = document.getElementById('nome').value;
	 var cognome = document.getElementById('cognome').value;
	 var mail = document.getElementById('mail').value;
	 var richiesta = document.getElementById('richiesta').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' e' obbligatorio.");
           document.modulo.nome.focus();
           return false;
        }
        else if ((cognome == "") || (cognome == "undefined")) {
           alert("Il campo Cognome e' obbligatorio.");
           document.modulo.cognome.focus();
           return false;
        }
		else if ((mail == "") || (mail == "undefined")) {
           alert("Il campo Mail e' obbligatorio.");
           document.modulo.mail.focus();
           return false;
        }
		else if ((richiesta == "") || (richiesta == "undefined")) {
           alert("Il campo Richiesta e' obbligatorio.");
           document.modulo.richiesta.focus();
           return false;
        }
        //INVIA IL MODULO
        else {
           document.modulo.action = "";
           document.modulo.submit();
        }
  } 
//-->
