
 function prenotazione()
       {
         var arrivo=document.prenota.arrivo.value;
		 var partenza=document.prenota.partenza.value;
		 var camere=document.prenota.camere.value;
		 var persone=document.prenota.persone.value;
		 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 (arrivo=="")
		     {
			  alert("ATTENZIONE!!! Il campo -DATA ARRIVO- non puo' esser lasciato vuoto !!!");
			  return;
			 }	
		  if (partenza=="")
		     {
			  alert("ATTENZIONE!!! Il campo -DATA PARTENZA- non puo' esser lasciato vuoto !!!");
			  return;
			 }		
		  if (camere=="")
		     {
			  alert("ATTENZIONE!!! Il campo -CAMERE- non puo' esser lasciato vuoto !!!");
			  return;
			 }	
		  if (persone=="")
		     {
			  alert("ATTENZIONE!!! Il campo -PERSONE- non puo' esser lasciato vuoto !!!");
			  return;
			 }		 			 		 
		  if (cognome=="")
		     {
			  alert("ATTENZIONE!!! Il campo -COGNOME- non puo' esser lasciato vuoto !!!");
			  return;
			 }				  
		  if (nome=="")
		     {
			  alert("ATTENZIONE!!! Il campo -NOME- non puo' esser lasciato vuoto !!!");
			  return;
			 }
		if (email=="")
		     {
			  alert("ATTENZIONE!!! Il campo -EMAIL- non puo' esser lasciato vuoto !!!");
			  return;
			 }		
		if (accetto=="")
		     {
			  alert("ATTENZIONE!!! Acconsentire trattamento dati PRIVACY!!!");
			  return;
			 }			

  	 	 	 	 
			 document.prenota.submit();  
	   }
