// Javascript 

function validateReserve (theForm) {
	var error = "";
	
	if (theForm [0].value == "") { error += "Please fill in your NAME.\n"; }
	if (theForm [1].value == "") { error += "Please fill in your EMAIL.\n"; }
	if (theForm [2].value == "") { error += "Please fill in your PHONE NUMBER.\n"; }
	
	if (error != "") {
		alert (error);
		return false;
	}
	return true;
}
