function validacontatti(t) {
	if (t.nome.value == "")	{
		alert("Campo nome obbligatorio");
		t.nome.focus();
		return (false);
	}
	if (t.cognome.value == "")	{
		alert("Campo cognome obbligatorio");
		t.cognome.focus();
		return (false);
	}
	if (t.azienda.value == "")	{
		alert("Campo azienda obbligatorio");
		t.azienda.focus();
		return (false);
	}
	if (t.ruolo.value == "")	{
		alert("Campo ruolo obbligatorio");
		t.ruolo.focus();
		return (false);
	}	
	if (t.citta.value == "")	{
		alert("Campo citt&agrave; obbligatorio");
		t.citta.focus();
		return (false);
	}	
	if (t.numreg.value == "")	{
		alert("Campo numero di registrazione obbligatorio");
		t.numreg.focus();
		return (false);
	}	
				
	if (t.telefono.value == "")	{
		alert("Campo telefono obbligatorio");
		t.telefono.focus();
		return (false);
	}

	if (t.email.value == "") {
		alert("Campo email obbligatorio");
		t.email.focus();
		return (false);
	}
	return (true);
}