function checkform() {
var name = '';
var n = document.form.name.value;
var e = document.form.email.value;
name = n.charAt(0).toUpperCase() + n.substring(1,n.length).toLowerCase();
if(name.indexOf(" ") > 0)
name = name.substring(0,name.indexOf(" "));

document.form.name.value = name;

if(n =="") {
alert("Errore: compilare il campo NOME");
document.form.name.focus();
return false;
}
if(e=="") {
alert("Errore: compilare il campo E-Mail");
document.form.email.focus();
return false;
}
	if (!document.getElementById('controll').checked)
	{
		alert('ERRORE: 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();
}



