<!--

function CtlRicPresaVisione()
{
var esegui;
  	 esegui = 'true';
 	 if (document.prenotazione.ragione.value == '')
	 {
	  	alert('Attenzione! Il campo ->Ragione sociale<- è obbligatorio.');
		document.prenotazione.ragione.focus();
		esegui = 'false';
	 }
	 else
	 {
 	   if (document.prenotazione.nome.value == '')
	   {
	  	  alert('Attenzione! Il campo ->Nome richiedente<-  è obbligatorio.');
		  document.prenotazione.nome.focus();
		  esegui = 'false';
	   }
	   else
	   {
 	     if (document.prenotazione.cognome.value == '')
	     {
	  	    alert('Attenzione! Il campo ->Cognome richiedente<-  è obbligatorio.');
			document.prenotazione.cognome.focus();
		    esegui = 'false';
	     }
	     else
	     {
 	       if (document.prenotazione.citta.value == '')
	       {
	  	      alert('Attenzione! Il campo ->Città<-  è obbligatorio.');
			  document.prenotazione.citta.focus();
		      esegui = 'false';
	       }
	       else
	       {
 	         if (document.prenotazione.provincia.value == '')
	         {
	  	        alert('Attenzione! Il campo ->Provincia<-  è obbligatorio.');
				document.prenotazione.provincia.focus();
		        esegui = 'false';
	         }
	         else
	         {
 	           if (document.prenotazione.telefono.value == '')
	           {
	  	          alert('Attenzione! Il campo ->Telefono<-  è obbligatorio.');
				  document.prenotazione.telefono.focus();
		          esegui = 'false';
	           }
	         }
	       }
	     }
	   }
	 }
	 if (esegui == 'true')
	 {
	 document.prenotazione.submit();
	 }
}


//-->
