	  
function FrontPage_Hotel_Validator(theForm)
{


  if (theForm.txt_arrivaldate.value == "")
  {
    alert("Please Enter Arrival Date");
    theForm.txt_arrivaldate.focus();
    return (false);
  }
  

}


