function prenotazione()
       {
        
		 
		 var nome=document.prenota.nome.value;
		 var cognome=document.prenota.cognome.value;
		 var email=document.prenota.email.value;
		 var accetto=document.prenota.accetto.checked;
		 
			
           
		
      if (nome=="")
		     {
			  alert("ATTENZIONE!!! Il campo -NOME- non puo' esser lasciato vuoto !!!");
			  return;
			 } 	 			 		 
		  if (cognome=="")
		     {
			  alert("ATTENZIONE!!! Il campo -COGNOME- non puo' esser lasciato vuoto !!!");
			  return;
			 }				  
		  
    if(email==''){
               alert("ATTENZIONE!! Compilare il campo EMAIL");return;
       }
      else{
       Filtro = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
       if (Filtro.test(email)){
          }
       else
          {
          alert("ATTENZIONE!! Il campo EMAIL non è compilato correttamente");
          
          return ;
          }
       }         		
		if (accetto=="")
		     {
			  alert("ATTENZIONE!!! Acconsentire trattamento dati PRIVACY!!!");
			  return;
			 }			

  	 	 	 	 
			 document.prenota.submit();  
	   }



    
