// JavaScript Document

function checkform() {
	if (document.prenota.nome.value == "") {
		alert("Dati richiesti, Nome.");
		document.prenota.nome.focus();
		return;
	}
	if (document.prenota.cognome.value == "") {
		alert("Dati richiesti, Cognome.");
		document.prenota.cognome.focus();
		return;
	}
	if (document.prenota.arrivo.value == "") {
		alert("Dati richiesti, Data di Arrivo.");
		document.prenota.arrivo.focus();
		return;
	}
	if (document.prenota.partenza.value == "") {
		alert("Dati richiesti, Data di Partenza.");
		document.prenota.partenza.focus();
		return;
	}
	if (document.prenota.telefono.value == "") {
		alert("Dati richiesti, Numero di Telefono.");
		document.prenota.telefono.focus();
		return;
	}
	if (document.prenota.persone.value == "") {
		alert("Dati richiesti, Numero delle Persone.");
		document.prenota.persone.focus();
		return;
	}
	if (document.prenota.bambini.value == "") {
		alert("Dati richiesti, Numero Bambini.");
		document.prenota.bambini.focus();
		return;
	}
	if (document.prenota.seleziona.value == "") {
		alert("Dati richiesti, Numero delle Camere.");
		document.prenota.seleziona.focus();
		return;
	}
	if (document.prenota.ok.checked == false) {
		alert("Per proseguire è necessario accettare l'informativa sulla privacy."); 
		document.prenota.ok.focus();
		return;
	}	
	document.prenota.submit();
}
