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 checkform2()
{
	if (!document.getElementById('controll2').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(url, name, w, h)
{
w += 32;
h += 96;
 var win = window.open(url,
  name,
  'width=' + w + ', height=' + h + ', ' +
  'location=no, menubar=no, ' +
  'status=no, toolbar=no, scrollbars=yes, resizable=no');
 win.resizeTo(w, h);
 win.focus();
}