<!--
function F_CheckDati(f){
	
	//CONTROLLA I CAMPI DEL FORM 
	if(!FcheckFilled('Azienda/Company',f.azienda.value)){ f.azienda.focus(); return false; }
	//if(!FcheckFilled('Cittą/City',f.citta.value)){ f.citta.focus(); return false; }
	
	if(!FcheckDropOne('Nazione/Country',f.nazione)){ f.nazione.focus(); return false; }
	if(!FcheckFilled('Telefono/Phone',f.telefono.value)){ f.telefono.focus(); return false; }

	if(!FcheckFilled('Nome/Name',f.nome.value)){ f.nome.focus(); return false; }
	if(!FcheckFilled('Cognome/Lastname',f.cognome.value)){ f.cognome.focus(); return false; }
	if(!FcheckEmail('Email',f.email.value)){ f.email.focus(); return false; }
	
	// SE TUTTO E' OK PROCEDE
	return true;
}
-->

