// validates the non flash option for quick reservations
function validateForm(theForm, message) {
	if ( theForm.checkInDate.selectedIndex == 0 || theForm.checkInMonth.selectedIndex == 0 || theForm.checkInYear.selectedIndex == 0) {
		alert(message);
	} else {
		theForm.submit();
	}
}