function checkform()
{
	if (!document.getElementById('controll').checked)
	{
		alert('Attenzione: per proseguire devi spuntare la casella dove accetti la privacy e il trattamento dei dati personali.');
		return false;
	}

	return true;
}

function wopen()
{
var left = (screen.width/2)-(640/2);
var top = (screen.height/2)-(480/2);
 var win = window.open('./plugins/protect/privacy/legge.html',
  'Legge Privacy',
  'width=640, height=480,' +
  'left='+left+',top='+top+',' +
  'location=no, menubar=no, ' +
  'status=no, toolbar=no, scrollbars=yes, resizable=no');
 win.resizeTo(w, h);
 win.focus();
}
