// Copyright (c) 2011 MatchCraft, Inc.  All rights reserved.

window.addEvent('domready', function() {
  if ($('forgot-password-link')) {
    $('forgot-password-link').addEvent("click", function(e) {
      e.stop();
      alert('Please reset your password by going to the Matchcraft Technology Platform.');
    });
  }
});
