/**
 *
 * @access public
 * @return void
 **/
function ValidateContact(oForm){
  if (oForm.name.value == '') {
    alert('Please enter your name');
    oForm.name.focus();
    return false;  
  }
  if (!IsEmailValid(oForm.email)) {
    alert('Please enter your email address');
    oForm.email.focus();
    return false;  
  }
  if (oForm.enquiry.value == '') {
    alert('Please enter a few words to help us with your enquiry');
    oForm.enquiry.focus();
    return false;  
  }
}
