<!--
function fValidateBooking(theForm)
{

  if (theForm.B2_Customer_Name.value == "")
  {
    alert("Please enter a value for the \"Company Name\" field.");
    theForm.B2_Customer_Name.focus();
    return (false);
  }

  if (theForm.B4_Customer_Phone.value == "")
  {
    alert("Please enter a value for the \"Telephone Number\" field.");
    theForm.B4_Customer_Phone.focus();
    return (false);
  }

  if (theForm.D1_Booked_By.value == "")
  {
    alert("Please enter a value for the \"Your Name\" field.");
    theForm.D1_Booked_By.focus();
    return (false);
  }

  if (theForm.D2_EMail.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.D2_EMail.focus();
    return (false);
  }

  if (theForm.E1_Course_Date.selectedIndex < 0)
  {
    alert("Please select one of the \"Course Dates\" options.");
    theForm.E1_Course_Date.focus();
    return (false);
  }

  if (theForm.E3_How_Many_Delegates.selectedIndex < 0)
  {
    alert("Please select one of the \"Number of Delegates\" options.");
    theForm.E3_How_Many_Delegates.focus();
    return (false);
  }
  return (true);
}
//-->