document.observe("dom:loaded", function() {
  checkLinks();    
});


function checkLinks(){
  //alert('starting');
  $$("a").each(function(link){
    if(link.hostname != location.hostname && link.hostname != 'production-images.webapeel.com'){
      link.observe('click',function(event){
        
        if(!confirm("By accessing the noted link you will be leaving the Swedish-American State Bank's website and entering a website hosted by another party. Please be advised that you will no longer be subject to, or under the protection of, the privacy and security policies of the Swedish-American State Bank's website.  We encourage you to read and evaluate the privacy and security policies of the site you are entering, which may be different than those of Swedish-American State Bank.")){
          event.stop();
          return false;
        }
      });
    }
  });
}
