 function ver() {
  
        var s = document.form1.mail.value;
		
		
		if(document.form1.privacy.checked == false){
		alert("E' obligatorio dare il consenso alla privacy!")
		}
		
		else if(s==""){
		alert("La email non puņ essere nulla")
		}
		
		
		
       else if (s != "") {
          var re = /^[\w\.-]+@[\w\.-]+\.[a-z]{2,4}$/;
          OK = re.test(s);
          if (!OK){
           window.alert("Il campo e-mail č compilato in modo errato")
          }
		    else {
            document.form1.submit();
        }
		  
        }
      
      
       
      
    }
