function checkBooking(myBooking)
{

  if (document.myBooking.fullname.value == "")
  {
    alert("Please enter a value for the \"Full Name\" field.");
    document.myBooking.fullname.focus();
    return (false);
  }

  if (document.myBooking.email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    document.myBooking.email.focus();
    return (false);
  }

  if (document.myBooking.email.value.length > 50)
  {
    alert("Please enter at most 50 characters in the \"Email Address\" field.");
    document.myBooking.email.focus();
    return (false);
  }

  if (document.myBooking.telephone.value == "")
  {
    alert("Please enter a value for the \"Telephone Number\" field.");
    document.myBooking.telephone.focus();
    return (false);
  }

  if (document.myBooking.people.value == "")
  {
    alert("Please enter a value for the \"Number of Persons\" field.");
    document.myBooking.people.focus();
    return (false);
  }

  if (document.myBooking.type.selectedIndex == 0)
  {
    alert("The first \"Type of Accomodation\" option is not a valid selection.  Please choose one of the other options.");
    document.myBooking.type.focus();
    return (false);
  }

  if (document.myBooking.price.selectedIndex == 0)
  {
    alert("The first \"Price Range per Page\" option is not a valid selection.  Please choose one of the other options.");
    document.myBooking.price.focus();
    return (false);
  }

  if (document.myBooking.date_in.value == "")
  {
    alert("Please enter a value for the \"Date IN\" field.");
    document.myBooking.date_in.focus();
    return (false);
  }

  if (document.myBooking.date_out.value == "")
  {
    alert("Please enter a value for the \"Date OUT\" field.");
    document.myBooking.date_out.focus();
    return (false);
  }
  return (true);
}
//-->

