function ControllaForm() {
var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
var controllo=false; 
if (document.form1.area.value == "" )
{
controllo=true;
alert("Selezionare l'area di interesse");
document.form1.area.focus();
}
else if (document.form1.nome.value == "" )
{
controllo=true;
alert("Inserire il nome");
document.form1.nome.focus();
}
else if (document.form1.cognome.value == "" )
{
controllo=true;
alert("Inserire il cognome");
document.form1.cognome.focus();
}
else if (document.form1.citta.value == "" )
{
controllo=true;
alert("Inserire la citt&agrave;");
document.form1.citta.focus();
}
else if (document.form1.telefono.value == "" )
{
controllo=true;
alert("Inserire un recapito telefonico");
document.form1.telefono.focus();
}
else if (!email_reg_exp.test(document.form1.email.value) || (document.form1.email.value == "") || (document.form1.email.value == "undefined")) 
{
controllo=true;
alert("Inserire una email valida");
document.form1.email.focus();
}
if (controllo){return false}else{return true} 
}
