
  function Modulo() {
  var fValid = true;
  var theForm = document.modulo;
  var email = document.modulo.email.value;
   // Espressione regolare dell'email
  var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
	  
	  if (!email_reg_exp.test(email) || (email == "") || (email == "undefined")) {
           alert("Inserire un indirizzo email corretto.");
           document.modulo.email.select();
		   fValid = false;
        }else if(theForm.autorizzazione.checked==false){
			alert("Non hai dato il consenso al trattamento dei dati");
			fValid = false;
		}else if (theForm.OKdepliant.checked) {
		if ((theForm.nome.value==0) && (theForm.nome.value.length<=0)) {
			alert("Non hai inserito il nome !");
			theForm.nome.focus();
			fValid = false;
			}
		else if ((theForm.cognome.value==0) && (theForm.cognome.value.length<=0)) {
			alert("Non hai inserito il cognome !");
			theForm.cognome.focus();
			fValid = false;
			}
		else if ((theForm.indirizzo.value==0) && (theForm.indirizzo.value.length<=0)) {
			alert("Non hai inserito l'indirizzo !");
			theForm.indirizzo.focus();
			fValid = false;
			}
		else if ((theForm.numciv.value==0) && (theForm.numciv.value.length<=0)) {
			alert("Non hai inserito il numero civico !");
			theForm.numciv.focus();
			fValid = false;
			}
		else if ((theForm.cap.value==0) && (theForm.cap.value.length<=0)) {
			alert("Non hai inserito il C.A.P. !");
			theForm.cap.focus();
			fValid = false;
			}
		else if ((theForm.comune.value==0) && (theForm.comune.value.length<=0)) {
			alert("Non hai inserito la cittą/localitą !");
			theForm.comune.focus();
			fValid = false;
			}
		else if ((theForm.prov.value==0) && (theForm.prov.value.length<=0)) {
			alert("Non hai inserito la provincia !");
			theForm.prov.focus();
			fValid = false;
			}
		else if ((theForm.nazione.value==0) && (theForm.nazione.value.length<=0)) {
			alert("Non hai inserito la nazione !");
			theForm.nazione.focus();
			fValid = false;
			}
		}
	if (fValid) {
           document.modulo.action = "contatta_campeggio_go.asp";
           document.modulo.submit();
        }
	else {
		return false;
	}
  }




