
<!--    


function validate_form(){

//=========================================================
//Begin Validate First Name Field

	if (contactform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    contactform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (contactform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    contactform.surname.focus();
    return (false);
  }

  
//End Validate Surname Field
//=========================================================


//=========================================================
//Begin Validate EMail Field

	if (contactform.email.value == "")
  {
    alert("Please enter a value for the Email field.");
    contactform.email.focus();
    return (false);
  }  

//End Validate EMail Field

//=========================================================


//=========================================================
//Begin Validate Telephone Field

	if (contactform.telephone.value == "")
  {
    alert("Please enter a value for the Telephone field.");
    contactform.telephone.focus();
    return (false);
  }  

//End Validate Telephone Field

//=========================================================

//=========================================================
//Begin Validate Enquiry Field

	if (contactform.enquiry.value == "")
  {
    alert("Please enter an enquiry.");
    contactform.enquiry.focus();
    return (false);
  }

  
//End Validate Enquiry Field

//=========================================================

  return (true);

  }

//-->
