function emailvalidation(mail) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail)){
		return true;
	}
	return false;
}

function CheckForm(){
	if  (document.getElementById("nominativo").value=='') {
		alert("Inserire il proprio nominativo");
		document.getElementById("nominativo").focus();
		return false;
	}
	if  (document.getElementById("telefono").value=='') {
		alert("Inserire un recapito telefonico");
		document.getElementById("telefono").focus();
		return false;
	}
	if  (document.getElementById("email").value=='' || emailvalidation(document.getElementById("email").value)==false) {
		alert("Inserire la propria mail");
		document.getElementById("email").focus();
		return false;
	}
	if (!document.getElementById("Privacy").checked){
		alert("Per proseguire bisogna dare il consenso al trattamento dei dati personali");
		return false;
	}
	document.getElementById("prenotazione").action="inviomail.php";
	document.getElementById("prenotazione").submit();
	return true;
}
function PrivacyWin() {
	Win2=open( "privacy.php", "Privacy", "width=450,height=450, scrollbars=yes, resizable=no");
} 