<!--    


function validate_reservation_form(){

//=========================================================
//Begin Validate Name / Company Field

	if (reservationform.name.value == "")
  {
    alert("Please enter a value for the Name / Company field.");
    reservationform.name.focus();
    return (false);
  }

  
//End Validate Name / Company Field
//=========================================================


//=========================================================
//Begin Validate Email Address Field

	if (reservationform.email.value == "")
  {
    alert("Please enter a value for the Email Address field.");
    reservationform.email.focus();
    return (false);
  }
  

//End Validate Email Address Field
//=========================================================

//=========================================================
//Begin Validate Phone Number  Field

	if (reservationform.telephone.value == "")
  {
    alert("Please enter a value for the Phone Number field.");
    reservationform.telephone.focus();
    return (false);
  }
  

//End Validate Phone Number Field
//=========================================================


//=========================================================
//Begin Validate No.of Diners Field

	if (reservationform.diners.value == "")
  {
    alert("Please enter a value for the No.of Diners field.");
    reservationform.diners.focus();
    return (false);
  }  

//End Validate No.of Diners Field

//=========================================================

//=========================================================
//Begin Validate Time Field

	if (reservationform.time.value == "Please Select")
  {
    alert("Please select a value for the Time field.");
    reservationform.time.focus();
    return (false);
  }  

//End Validate Time Field

//=========================================================



  return (true);

  }

//-->

<!--    


function validate_loyalty_form(){

//=========================================================
//Begin Validate Title Field

	if (loyaltyform.title.value == "")
  {
    alert("Please enter a value for the Title field.");
    loyaltyform.title.focus();
    return (false);
  }

  
//End Validate Title Field
//=========================================================


//=========================================================
//Begin Validate Forename Field

	if (loyaltyform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    loyaltyform.firstname.focus();
    return (false);
  }
  

//End Validate Forename Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (loyaltyform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    loyaltyform.surname.focus();
    return (false);
  }
  

//End Validate Surname Field
//=========================================================


//=========================================================
//Begin Validate Flat/House No. Field

	if (loyaltyform.flat.value == "")
  {
    alert("Please enter a value for the Flat/House No. field.");
    loyaltyform.flat.focus();
    return (false);
  }  

//End Validate Flat/House No. Field

//=========================================================

//=========================================================
//Begin Validate Address Line 1 Field

	if (loyaltyform.address1.value == "")
  {
    alert("Please enter a value for the Address Line 1 field.");
    loyaltyform.address1.focus();
    return (false);
  }  

//End Validate Address Line 1 Field

//=========================================================

//=========================================================
//Begin Validate Address Line 2 Field

	if (loyaltyform.address2.value == "")
  {
    alert("Please enter a value for the Address Line 2 field.");
    loyaltyform.address2.focus();
    return (false);
  }  

//End Validate Address Line 2 Field

//=========================================================


//=========================================================
//Begin Validate City  Field

	if (loyaltyform.city.value == "")
  {
    alert("Please enter a value for the City  field.");
    loyaltyform.city.focus();
    return (false);
  }  

//End Validate City  Field

//=========================================================


//=========================================================
//Begin Validate Postcode Field

	if (loyaltyform.postcode.value == "")
  {
    alert("Please enter a value for the Postcode field.");
    loyaltyform.postcode.focus();
    return (false);
  }  

//End Validate Postcode Field

//=========================================================


//=========================================================
//Begin Validate Email Address Field

	if (loyaltyform.email.value == "")
  {
    alert("Please enter a value for the Email Address field.");
    loyaltyform.email.focus();
    return (false);
  }  

//End Validate Email Address Field

//=========================================================

  return (true);

  }

//-->


<!--    


function validate_feedback_form(){

//=========================================================
//Begin Validate Name / Company Field

	if (feedbackform.name.value == "")
  {
    alert("Please enter a value for the Name / Company field.");
    feedbackform.name.focus();
    return (false);
  }

  
//End Validate Name / Company Field
//=========================================================


//=========================================================
//Begin Validate Email Address Field

	if (feedbackform.email.value == "")
  {
    alert("Please enter a value for the Email Address field.");
    feedbackform.email.focus();
    return (false);
  }
  

//End Validate Email Address Field
//=========================================================

//=========================================================
//Begin Validate Phone Number  Field

	if (feedbackform.phone.value == "")
  {
    alert("Please enter a value for the Phone Number field.");
    feedbackform.phone.focus();
    return (false);
  }
  

//End Validate Phone Number Field
//=========================================================


//=========================================================
//Begin Validate Reason for visit Field

	if (feedbackform.reason.value == "Please Select")
  {
    alert("Please select a value for the Reason for visit field.");
    feedbackform.reason.focus();
    return (false);
  }  

//End Validate Reason for visit Field

//=========================================================

//=========================================================
//Begin Validate When did you visit Field

	if (feedbackform.when.value == "Please Select")
  {
    alert("Please select a value for the When did you visit field.");
    feedbackform.when.focus();
    return (false);
  }  

//End Validate When did you visit Field

//=========================================================

//=========================================================
//Begin Validate How did you find the food Field

	if (feedbackform.food.value == "Please Select")
  {
    alert("Please select a value for the How did you find the food field.");
    feedbackform.food.focus();
    return (false);
  }  

//End Validate How did you find the food Field

//=========================================================

//=========================================================
//Begin Validate How did you find the price Field

	if (feedbackform.price.value == "Please Select")
  {
    alert("Please select a value for the How did you find the price field.");
    feedbackform.price.focus();
    return (false);
  }  

//End Validate How did you find the price Field

//=========================================================

//=========================================================
//Begin Validate How did you find the service Field

	if (feedbackform.service.value == "Please Select")
  {
    alert("Please select a value for the How did you find the service field.");
    feedbackform.service.focus();
    return (false);
  }  

//End Validate How did you find the service Field

//=========================================================

//=========================================================
//Begin Validate How did you find the Setting Field

	if (feedbackform.setting.value == "Please Select")
  {
    alert("Please select a value for the How did you find the setting field.");
    feedbackform.setting.focus();
    return (false);
  }  

//End Validate How did you find the Setting Field

//=========================================================

//=========================================================
//Begin Validate Would you Recommend Us Field

	if (feedbackform.recommend.value == "Please Select")
  {
    alert("Please select a value for the Would you Recommend Us field.");
    feedbackform.recommend.focus();
    return (false);
  }  

//End Validate How did you find the price Field

//=========================================================



  return (true);

  }

//-->



