

<!--    


function validate_booking_form(){

//=========================================================
//Begin Validate Name Field

	if (bookingform.nameparty.value == "")
  {
    alert("Please enter a value for the Party Name field.");
    bookingform.nameparty.focus();
    return (false);
  }

  
//End Validate Name Field
//=========================================================


//=========================================================
//Begin Validate Organiser Field

	if (bookingform.organiser.value == "")
  {
    alert("Please enter a value for the Organiser field.");
    bookingform.organiser.focus();
    return (false);
  }
  

//End Validate Organiser Field
//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (bookingform.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    bookingform.telephone.focus();
    return (false);
  }  

//End Validate Telephone Field

//=========================================================


//=========================================================
//Begin Validate Email Field

	if (bookingform.emailaddress.value == "")
  {
    alert("Please enter a value for the Email field.");
    bookingform.emailaddress.focus();
    return (false);
  }

  
//End Validate Email Field

//=========================================================

//=========================================================
//Begin Validate Date Field

	if (bookingform.date.value == "")
  {
    alert("Please enter a value for the Date field.");
    bookingform.date.focus();
    return (false);
  }

  
//End Validate Date Field

//=========================================================

//=========================================================
//Begin Validate Type Field

	if (bookingform.lunchordinner.value == "")
  {
    alert("Please enter a value for the Lunch or Dinner field.");
    bookingform.lunchordinner.focus();
    return (false);
  }

  
//End Validate Type Field

//=========================================================

//=========================================================
//Begin Validate Numbers Field

	if (bookingform.numbers.value == "")
  {
    alert("Please enter a value for the Numbers field.");
    bookingform.numbers.focus();
    return (false);
  }

  
//End Validate Numbers Field

//=========================================================



  return (true);

  }

//-->
