<!--
function Conferma(){
var f = document.modulo

if (f.nome.value == "") {
alert("Il nome č obbligatorio !")
f.nome.focus();
f.nome.select();
return false;
}

if (f.societa.value == "") {
alert("Il nome della societā č obbligatorio !")
f.societa.focus();
f.societa.select();
return false;
}

if (f.citta.value == "") {
alert("Indicare almeno la cittā!")
f.citta.focus();
f.citta.select();
return false;
}

if (f.email.value.indexOf("@") == -1) {
alert("Indirizzo E-Mail non valido !")
f.email.focus();
f.email.select();
return false;
}	
if (f.email.value.indexOf(".") == -1) {
alert("Indirizzo E-Mail non valido!")
f.email.focus();
f.email.select();
return false;
}

if (f.accetto.checked == 0)
{
alert("Selezionare AUTORIZZO per consentire il trattamento dei Vostri dati personali !");
return false;
}

return true;
}
//-->