<!--
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.tel.value == "") {
alert("Il telefono  obbligatorio!");
f.tel.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;
}
-->
