<!--
function Conferma() {
var f = document.modulo

if (f.nome.value == "") {
alert("Il nome č obbligatorio!");
f.nome.focus();
return false;
}

/*if (f.azienda.value == "") {
alert("L\'azienda č obbligatoria!");
f.azienda.focus();
return false;
}*/

if (f.citta.value == "") {
alert("La cittā č obbligatoria!");
f.citta.focus();
return false;
}

if (f.posta_el.value == "") {
alert("L\' email č obbligatoria!");
f.posta_el.focus();
return false;
}

if (f.messaggio.value == "") {
alert("Il messaggio č obbligatorio!");

return false;
}



if (f.accetto.checked == 0) {
alert("Seleziona AUTORIZZO per consentire il trattamento dei propri dati personali!");
//f.accett.focus();
return false;
}

return true;
}
-->