
<!--    


function validate_contact_form(){

//=========================================================
//Begin Validate First Name Field

	if (crepecontactform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    crepecontactform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (crepecontactform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    crepecontactform.surname.focus();
    return (false);
  }

  
//End Validate Surname Field
//=========================================================

//=========================================================
//Begin Validate Address 1 Field

	if (crepecontactform.address.value == "")
  {
    alert("Please enter a value for the Address field.");
    crepecontactform.address.focus();
    return (false);
  }

  
//End Validate Address 1 Field
//=========================================================


//=========================================================
//Begin Validate EMail Field

	if (crepecontactform.email.value == "")
  {
    alert("Please enter a value for the Email field.");
    crepecontactform.email.focus();
    return (false);
  }  

//End Validate EMail Field

//=========================================================

//=========================================================
//Begin Telephone Field

	if (crepecontactform.telephone.value == "")
  {
    alert("Please enter a Contact Telephone number.");
    crepecontactform.telephone.focus();
    return (false);
  }

  
//End Telephone Field

//=========================================================


//=========================================================
//Begin Validate Enquiry Field

	if (crepecontactform.enquiry.value == "")
  {
    alert("Please enter an enquiry.");
    crepecontactform.enquiry.focus();
    return (false);
  }

  
//End Validate Enquiry Field

//=========================================================

  return (true);

  }

//-->

<!--
function openwindow(url) {
helpWin = window.open(url,"Help","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=253,height=280,left=40,top=40");
}
// end -->
//-->


