<!-- Hide

function convalidaForm(cf) {

var txtMsg="",
esigenze=cf.esigenze.value,
azienda_ente=cf.azienda_ente.value,
tel=cf.tel.value,
persona_riferimento=cf.persona_riferimento.value,
email=cf.email.value,
posizioneAt=cf.email.value.indexOf("@"),
posizionePunto=cf.email.value.indexOf(".");

	txtMsg+=(esigenze=="")
		?
		"\nInserire la DESCRIZIONE DI PARTICOLARI ESIGENZE.":"";

	txtMsg+=(azienda_ente=="")
		?
		"\nSpecificare l'AZIENDA o l'ENTE.":"";

	txtMsg+=(tel=="")
		?
		"\nInserire un NUMERO DI TELEFONO valido.":"";

	txtMsg+=(persona_riferimento=="" || persona_riferimento=="nome e cognome")
		?
		"\nInserire il NOME di una PERSONA DI RIFERIMENTO.":"";

	if (email!="")
	txtMsg+=(email.length<=6 || posizioneAt==-1 || posizionePunto==-1)
			?
			"\nInserire un INDIRIZZO E-MAIL valido.":"";

	if (txtMsg!="") {
		alert("Attenzione!!\n"+txtMsg);
		return false;
		}


	cf.tape_interno.value=(cf.tape_interno.checked?"sė":"no");
	cf.tape_esterno.value=(cf.tape_esterno.checked?"sė":"no"); 


var data_ora=new Date();

	cf.today.value=(data_ora.getDate()<10?"0":"")+data_ora.getDate()+"/"
			+(data_ora.getMonth()+1<10?"0":"")+(data_ora.getMonth()+1)+"/"
			+data_ora.getFullYear();

	cf.time.value=(data_ora.getHours()<10?"0":"")+data_ora.getHours()+"/"
			+(data_ora.getMinutes()<10?"0":"")+data_ora.getMinutes()+"/"
			+(data_ora.getSeconds()<10?"0":"")+data_ora.getSeconds();

	}

//-->