<!--
function verificaRichiestaVeloce(myForm) {
	var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;
	if (myForm.dataDa.value == "") {
		alert("Please chose the day of arrival.");
		myForm.dataDa.focus();
		return false;
	}
	if (myForm.numNotti.value == "") {
		alert("Please insert the number of nights.");
		myForm.numNotti.focus();
		return false;
	}
	if (myForm.numOspiti.value == "") {
		alert("Please insert the number of guests.");
		myForm.numOspiti.focus();
		return false;
	}
	if (myForm.nome.value == "") {
		alert("Please insert your name.");
		myForm.nome.focus();
		return false;
	}
	if (myForm.email.value == "") {
		alert("Please insert your e-mail address.");
		myForm.email.focus();
		return false;
	}
	if (!email_reg_exp.test(myForm.email.value)) {
		alert("E-mail address is not correct.");
		myForm.email.focus();
		return false;
	}
	if (myForm.info2.value == "") {
		alert("Please insert your message.");
		myForm.info2.focus();
		return false;
	}
	if (myForm.privacy2.checked == false) {
		alert("Not accepting the privacy policy the reservation request can not be processed.");
		return false;
	}
}
//-->
