var validationSet = {
  'nominee_name': {
    'regexp': /^.+?/,
    'error': 'Please enter the Name of the Nominee. '
  },
  'nominee_day_phone': {
    'regexp': /\(?[0-9]{3}\)?[-. ]?[0-9]{3}[-. ]?[0-9]{4}/,
    'error': 'Please enter the Daytime Phone Number of the Nominee. '
  },
  'nominee_evening_phone': {
    'regexp': /\(?[0-9]{3}\)?[-. ]?[0-9]{3}[-. ]?[0-9]{4}/,
    'error': 'Please enter the Evening Phone Number of the Nominee. '
  },
  'address': {
    'regexp': /^.+?/,
    'error': 'Please enter the Address of the Nominee. '
  },
  'nominee_email': {
    'regexp': /^.+?@.+?\..+$/,
    'error': 'Please enter a valid email address for the Nominee. ' +
        'It should be of the form someone@example.com.'
  },
  'first_employment': {
    'regexp': /^.+?/,
    'error': 'Please enter the Date and Place of First Employment. '
  },
  'from_date': {
    'regexp': /^.+?/,
    'error': 'Please enter the From Date. '
  },
  'to_date': {
    'regexp': /^.+?/,
    'error': 'Please enter the To Date. '
  },
  'places': {
    'regexp': /^.+?/,
    'error': 'Please enter the Places of Employment. '
  },
  'present_occupation': {
    'regexp': /^.+?/,
    'error': 'Please enter the Present Occupation. '
  },
  'available_media': {
    'regexp': /^.+?/,
    'error': 'Please enter the List of Available Media. '
  },
  'contributions': {
    'regexp': /^.+?/,
    'error': 'Please enter the Significant Contributions. '
  },
  'submitted_by': {
    'regexp': /^.+?/,
    'error': 'Please enter your Name. '
  },
  'submitter_phone': {
    'regexp': /\(?[0-9]{3}\)?[-. ]?[0-9]{3}[-. ]?[0-9]{4}/,
    'error': 'Please enter your Phone Number. '
  },
  'submitter_email': {
    'regexp': /^.+?@.+?\..+$/,
    'error': 'Please enter a valid email address for yourself. ' +
        'It should be of the form someone@example.com.'
  }
};
