<!--
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(!FcheckFilled('CAP/ZIP',f.cap.value)){ f.cap.focus(); return false; }
	
	if(!FcheckDropOne('Nazione/Country',f.selNazione)){ f.selNazione.focus(); return false; }
	if(!FcheckFilled('Telefono/Phone',f.telefono.value)){ f.telefono.focus(); return false; }

	if(!FcheckFilled('Nome/Name',f.name.value)){ f.name.focus(); return false; }
	if(!FcheckFilled('Cognome/Lastname',f.lastname.value)){ f.lastname.focus(); return false; }
	if(!FcheckEmail('Email',f.email.value)){ f.email.focus(); return false; }
	
	if(!FcheckFilled('Username',f.username.value)){ f.username.focus(); return false; }
	if(!FcheckFilled('Password',f.passwd.value)){ f.passwd.focus(); return false; }
	
	// SE TUTTO E' OK PROCEDE
	return true;
}
-->

