
<!--    


function validate_form(){

//=========================================================
//Begin Validate First Name Field

	if (sbfform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    sbfform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (sbfform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    sbfform.surname.focus();
    return (false);
  }
  
  	if (sbfform.institution.value == "")
  {
    alert("Please enter a value for the Institution field.");
    sbfform.institution.focus();
    return (false);
  }

  
//End Validate Surname Field
//=========================================================


//=========================================================
//Begin Validate EMail Field

	if (sbfform.email.value == "")
  {
    alert("Please enter a value for the Email field.");
    sbfform.email.focus();
    return (false);
  }  

//End Validate EMail Field

//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (sbfform.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    sbfform.telephone.focus();
    return (false);
  }  

//End Validate Telephone Field

//=========================================================

//=========================================================
//Begin Validate Enquiry Field

	if (sbfform.enquiry.value == "")
  {
    alert("Please enter an enquiry.");
    sbfform.enquiry.focus();
    return (false);
  }

  
//End Validate Enquiry Field

//=========================================================

  return (true);

  }

//-->


<!--    


function validate_booking_form(){

//=========================================================
//Begin Validate First Name Field

	if (ckcbookingform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    ckcbookingform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (ckcbookingform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    ckcbookingform.surname.focus();
    return (false);
  }

  
//End Validate Surname Field
//=========================================================


//=========================================================
//Begin Validate No Of People Field

	if (ckcbookingform.noofpeople.value == "")
  {
    alert("Please enter a value for the Number of People field.");
    ckcbookingform.noofpeople.focus();
    return (false);
  }

  
//End Validate No Of People Field
//=========================================================


//=========================================================
//Begin Validate EMail Field

	if (ckcbookingform.email.value == "")
  {
    alert("Please enter a value for the Email field.");
    ckcbookingform.email.focus();
    return (false);
  }  

//End Validate EMail Field

//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (ckcbookingform.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    ckcbookingform.telephone.focus();
    return (false);
  }  

//End Validate Telephone Field

//=========================================================


  return (true);

  }

//-->
