//Validate evaluation 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_company.value == '') {
    alert('Please enter company name');
    oForm.contact_company.focus();
  }
  else if(oForm.contact_country.value == "Any") {
    alert('Please select a Country Name');
    oForm.contact_country.focus();
  }
  else if(oForm.contact_email.value=='') {
    alert('Please enter your email');
    oForm.contact_email.focus();
  }
  else
    fResult = true;
  return fResult;
}
