<!--
function Conferma_info() {
var f = document.form_info

if (f.rag_soc.value == "") {
alert("La Ragione Sociale è obbligatoria!");
f.rag_soc.focus();
return false;
}

if (f.referente.value == "") {
alert("Cognome e Nome di un referente sono obbligatori!");
f.referente.focus();
return false;
}

if (f.telefono.value == "") {
alert("Il telefono è obbligatorio!");
f.telefono.focus();
return false;
}

if (f.email.value == "") {
alert("L\' email è obbligatoria!");
f.email.focus();
return false;
}

if (f.sito.value == "" || f.sito.value== "http://") {
alert("Il Nome dell\' indirizzo web dell\'Azienda è obbligatorio!");
f.sito.focus();
return false;
}

if (f.parole.value == "") {
alert("Le parole chiave sono obbligatorie!");
f.parole.focus();
return false;
}

if (f.accetto.checked == 0) {
alert("Seleziona ACCONSENTO per consentire il trattamento dei propri dati personali!");
//f.accett.focus();
return false;
}

return true;
}
-->
