   
function newwindow(str, titolo,w,h) {
 openwin = window.open(str,titolo,'width='+ w +',height='+ h +',status=no,scrollbars=yes,resizable=no,location=no,toolbar=no');
 }
 
 
function controlli_ita(form)
  {
  error=0;
  
 if(!document.getElementById('privacy').checked) { msg = " Manca l'autorizzazione al trattamento dei dati personali!\n\n";error=1;} 
  
  if (error==0)
    {return true;}
  else 
     {alert(msg); return false;}

}


function controlli_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;}

}