// Script: Search panel selection and validation functions

function checkBooking(thisForm) {
if (thisForm.selPropertyID.value == "") {
		alert('Please select a hotel.');
		return false;
	}
return true;
}