//More information form
function Validate(oForm) {
  var fResult = false;

  if(oForm.contact_name.value == '') {
    alert('Please enter your name');
    oForm.contact_name.focus();
  }
  else if(oForm.contact_email.value=='') {
    alert('Please enter your email');
    oForm.contact_email.focus();
  }
  else
    fResult = true;
  return fResult;
}
