function FrontPage_Form1_Validator1(theForm)
{

  if (theForm.name2.value == "")
  {
    alert("Please enter your name.");
    theForm.name2.focus();
    return (false);
  }


  if (theForm.email.value == "")
  {
    alert("Please enter your Email address");
    theForm.email.focus();
    return (false);
  }
  
  
  if (theForm.type_of_request.selectedIndex == 0)
  {
    alert("Please select \" Type of Request \" it currently not a valid selection");
    theForm.type_of_request.focus();
    return (false);
  }
  
  
  if (theForm.arrival.value == "")
  {
    alert("Please enter Arrive Date ");
    theForm.arrival.focus();
    return (false);
  }
  
   if (theForm.depart.value == "")
  {
    alert("Please enter Depart Date ");
    theForm.depart.focus();
    return (false);
  }
     if (theForm.adults.value == "")
  {
    alert("Please enter Number of Adult");
    theForm.adults.focus();
    return (false);
  }
  
    if (theForm.meal_plan.selectedIndex == 0)
  {
    alert("The \"Meal Plan Field\" is not a valid selection");
    document.forms.form.meal_plan.focus();
    return (false);
  }
  
  
  if (theForm.SpamCheck.value == "")
  {
    alert("Please enter the red number");
    theForm.SpamCheck.focus();
    return (false);
  }
  
  return (true);
}
