function validate(formNode){
  var formValidatorInstance = new FormValidator(formNode);
  formValidatorInstance.addRule('Name','We need your name for our records','required');
  formValidatorInstance.addRule('Email','Please check that the email address is correct','email');
  formValidatorInstance.addRule('Country','We need to know the country you are in for our records','required');
  formValidatorInstance.addRule('Address','We need your address for our records','required');
  formValidatorInstance.addRule('Telephone','We would like your telephone number for our records','required');
  formValidatorInstance.addRule('Business_Type','For support purposes we need to know the type of business your are in','required');
  return formValidatorInstance.validate();
}
