function newsletter_eng(form)
  {
  error=0;
  
if(!document.getElementById('privacy').checked) { msg = " Is missing the autorization for the handling of personal details.\n\n";error=1;}
  
  if (error==0)
    {return true;}
  else 
     {alert(msg); return false;}

}