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