<!--
function Modulo() {
     // Variabili associate ai campi del modulo
	 var nome = document.getElementById('nome').value;
	 var indirizzo = document.getElementById('indirizzo').value;
	 var tel = document.getElementById('tel').value;
	 var email = document.getElementById('email').value; 
	 var nozze = document.getElementById('nozze').value;
	 var appuntamento = document.getElementById('appuntamento').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 Cognome e' obbligatorio.");
           document.modulo.nome.focus();
           return false;
        }
 		else if ((indirizzo == "") || (indirizzo == "undefined")) {
           alert("Il campo Indirizzo e' obbligatorio.");
           document.modulo.indirizzo.focus();
           return false;
        }
		else if ((tel == "") || (tel == "undefined")) {
           alert("Il campo Telefono e' obbligatorio.");
           document.modulo.tel.focus();
           return false;
        }
		else if ((email == "") || (email == "undefined")) {
           alert("Il campo Email e' obbligatorio.");
           document.modulo.email.focus();
           return false;
        }
		else if ((nozze == "") || (nozze == "undefined")) {
           alert("Il campo Data delle Nozze e' obbligatorio.");
           document.modulo.nozze.focus();
           return false;
        }
		else if ((appuntamento == "") || (appuntamento == "undefined")) {
           alert("Il campo Data dell'Appuntamento e' obbligatorio.");
           document.modulo.appuntamento.focus();
           return false;
        }
        //INVIA IL MODULO
        else {
           document.modulo.action = "";
           document.modulo.submit();
        }
  } 
//-->