$(document).ready(function() {
      $("a[href^='http']:not([href*='sccu.com']||[href*='effcu.org'])").after(' <img src="/images/icons/external.png" alt="External Link" title="External Link" />').click(function () {
      var response = window.confirm("Be advised that:\nBy clicking on any link to other Internet addresses, you are leaving the Space Coast Credit Union web site.\nYou are linking to an alternate web site not operated by Space Coast Credit Union.\nSpace Coast Credit Union is not responsible for the content of the alternate web site.\nSpace Coast Credit Union does not represent either the third party or the member if the two parties enter into a transaction.\nPrivacy and security policies may differ from those practiced by Space Coast Credit Union.\n\nWould you like to continue?");

      $("a[href^='http']:not([href*='sccu.com'])").attr('target', '_new')
      if (response)
      {
         return true;
      }
      else
      {
         return false;
      }
   });
});