//Support 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 if(oForm.contact_address.value == '') {
    alert('Please enter your address');
    oForm.contact_address.focus();
  }
  else if(oForm.contact_city.value == '') {
    alert('Please enter the City name');
    oForm.contact_city.focus();
  }
  else if(oForm.contact_state.value == '') {
    alert('Please enter State name');
    oForm.contact_state.focus();
  }
  else if(oForm.contact_postcode.value=='') {
    alert('Please enter Zip/Postcode');
    oForm.contact_postcode.focus();
  }
  else if(oForm.contact_country.value=="Any") {
    alert('Please select a Country name');
    oForm.contact_country.focus();
  }
  else if(oForm.contact_phone.value=='') {
    alert('Please enter your phone');
    oForm.contact_phone.focus();
  }
  else if(oForm.product_version.value=='') {
    alert('Please enter your product version no.');
    oForm.product_version.focus();
  }
  else if(oForm.product_serial.value=='') {
    alert('Please enter your product serial no.');
    oForm.product_serial.focus();
  }
  else if(oForm.problem_description.value=='') {
    alert('Please enter the problem description.');
    oForm.problem_description.focus();
  }
  else
    fResult = true
  return fResult;
}
