function ControllaForm()
{
var controllo=false;
var email=true;

pippo=document.getElementById('newsl');
// Controllo TEXTfields (nome)

if (pippo.email.value == "" )
{
controllo=true;
email=false;
alert("Please, insert your e-mail address.");
}
if (!(pippo.trattamento.checked))
{
controllo=true;
alert("Please, accept Privacy Policy.");
}
// Fine Controllo CHECKBOX

if (controllo){return false}else{return true}

}