function verifica()
{
if(document.preventivo.Nome.value=="")
{
	alert("Per favore inserisca il suo nominativo !");
	document.preventivo.Nome.focus();
	return false;
}
if(document.preventivo.Azienda.value=="")
{
	alert("Per favore inserisca il nome della sua azienda!");
	document.preventivo.Azienda.focus();
	return false;
}
if(document.preventivo.Telefono.value=="")
{
	alert("Per favore inserisca il suo numero di telefono !");
	document.preventivo.Telefono.focus();
	return false;
}
if ((document.preventivo.Email.value.indexOf('@')==-1) || (document.preventivo.Email.value.indexOf('.')==-1) || (document.preventivo.Email.value.length<6))
	{
	alert("Per favore inserisca un indirizzo di posta elettronica valido !");
	document.preventivo.Email.focus();
	return false;
	}
}//end verifica