//
// Functions pertaining to the Store Locator.
//

function validateQuickLocator(theForm) {
  var zip = theForm.zip_code.value;

  if (zip == null || zip <= 0) {
    alert('A zip code is required.');
    return false;
  }

  return true;
}
