<!--

function validate_booking_form(){

//=========================================================
//Begin Validate Name Field

	if (ic_booking_form.name.value == "")
  {
    alert("Please enter a value for the Name field.");
    ic_booking_form.name.focus();
    return (false);
  }

  
//End Validate Name Field
//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (ic_booking_form.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    ic_booking_form.telephone.focus();
    return (false);
  }
  

//End Validate Telephone Field
//=========================================================


//=========================================================
//Begin Validate Location Field

	if (ic_booking_form.location.value == "")
  {
    alert("Please enter a value for the Location field.");
    ic_booking_form.location.focus();
    return (false);
  }  

//End Validate Location Field

//=========================================================


//=========================================================
//Begin Validate Date Field

	if (ic_booking_form.date.value == "")
  {
    alert("Please enter a value for the Date field.");
    ic_booking_form.date.focus();
    return (false);
  }

  
//End Validate Date Field

//=========================================================


  return (true);

  }
//-->


<!--

function validate_enquiry_form(){

//=========================================================
//Begin Validate Name Field

	if (ic_enquiry_form.name.value == "")
  {
    alert("Please enter a value for the First Name field.");
    ic_enquiry_form.name.focus();
    return (false);
  }

  
//End Validate Name Field
//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (ic_enquiry_form.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    ic_enquiry_form.telephone.focus();
    return (false);
  }
  

//End Validate Telephone Field
//=========================================================


//=========================================================
//Begin Validate Enquiry Field

	if (ic_enquiry_form.enquiry.value == "")
  {
    alert("Please enter a value for the Enquiry field.");
    ic_enquiry_form.enquiry.focus();
    return (false);
  }  

//End Validate Enquiry Field

//=========================================================


  return (true);

  }
//-->



