<!--
function Conferma(){
var f = document.modulo

//if (f.accetto.checked == 1)
//{
//NewWindow=window.open('about:blank','richiesta','resizable=no,width=300,height=250,status=no,location=no,toolbar=no'); 
//NewWindow.focus();
//void(0);
//modulo.submit();
//}
if (f.nome.value == "") {
alert("Il nome è obbligatorio !")
f.nome.focus();
f.nome.select();
return false;
}
if (f.cognome.value == "") {
alert("Il cognome è obbligatorio !")
f.cognome.focus();
f.cognome.select();
return false;
}

//if (f.privato_azienda.privato.checked == 0) {
//alert("boooo");
//f.privato_azienda.focus();
//f.privato_azienda.select();
//return false;
//}


//if (f.societa.value == "") {
//alert("Il nome della società è obbligatorio !")
//f.societa.focus();
//f.societa.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.telefono.value == "") {
//alert("Il telefono è obbligatorio !")
//f.telefono.focus();
//f.telefono.select();
//return false;
//}

if (f.accetto.checked == 0)
{
alert("Selezionare AUTORIZZO per consentire il trattamento dei Vostri dati personali !");
return false;
}

return true;
}
//-->
