
<!--    


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 tables Field

	if (feedbackform.food.value == "Please Select")
  {
    alert("Please select a value for the How did you find the tables field.");
    feedbackform.food.focus();
    return (false);
  }  

//End Validate How did you find the tables 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);

  }

//-->



