function Check_Reservation(theForm){
    if (theForm.StartDate.value.replace(/\s+$/, "") == ""){
    alert("Please enter Arrival");
    return (false);
    }

	if (theForm.EndDate.value.replace(/\s+$/, "") == ""){
    alert("Please enter Departure");
    return (false);
    }

  	if (theForm.Rooms.selectedIndex < 1){
    alert("Please enter Rooms");
    theForm.Rooms.focus();
    return (false);
  	}
  	if (theForm.Adults.selectedIndex < 1){
    alert("Please enter Adults");
    theForm.Adults.focus();
    return (false);
  	}
  	if (theForm.Children.selectedIndex < 1){
    alert("Please enter Children");
    theForm.Children.focus();
    return (false);
  	}
    return (true);
}
