function validaform()
	{ 
	nome=richiesta.nome.value; //prendo i valori dei campi, abbreviandone i nomi 
	cognome=richiesta.cognome.value; 
	indirizzo=richiesta.indirizzo.value; 
	citta=richiesta.citta.value; 
	provincia=richiesta.provincia.value; 
	telefono=richiesta.telefono.value; 
	email=richiesta.email.value; 
	data_arrivo=richiesta.data_arrivo.value; 
	data_partenza=richiesta.data_partenza.value; 

	if ((nome.length)<=1){ 
    	alert ("Please insert your Name"); 
     	return false; 
   		} 

	if ((cognome.length)<=1){ 
    	alert ("Please insert your Surname"); 
     	return false; 
   		} 

	if ((indirizzo.length)<=5){ 
    	alert ("Please insert your Addresse"); 
     	return false; 
   		} 

	if ((citta.length)<=1){ 
    	alert ("Please insert your Country"); 
     	return false; 
   		} 

	if ((provincia.length)<=1){ 
    	alert ("Please insert your State"); 
     	return false; 
   		} 

	if ((telefono.length)<=1){ 
    	alert ("Please insert your Phone"); 
     	return false; 
   		} 

	if (email.indexOf("@")==-1) { 
    	alert ("Please insert your E-Mail"); 
     	return false; 
   		} 		
	
	if ((data_arrivo.length)<=9){ 
    	alert ("Please insert the arrival"); 
     	return false; 
   		}
		
	if ((data_partenza.length)<=9){ 
    	alert ("Please insert the departure"); 
     	return false; 
   		}
	
	if (confirm("CHECK OUT THE FORM \n\nThe E-mail "+email+" is correct?\n\nClick to OK to confirm and send the request.\nClick to CANCEL for revise your eMail Addresse."))
		{
		return true; 
		}else{
		return false; 
		}

	} 