// Used for pages with strict doctypes (i.e. no target="_blank")
// Automagically adds them back in to links with rel="external"

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
     anchor.target = "_blank";
    }
    
   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "top") {
     anchor.target = "_top";
    }    

 if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "committee") {
         anchor.onkeypress = function(){window.open('/ir/btsm/ar2009/images/executive2_large.jpg', 'committee', 'toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no,height=810,width=720');return false;}
         anchor.onclick = function(){window.open('/ir/btsm/ar2009/images/executive2_large.jpg', 'committee', 'toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no,height=810,width=720');return false;}
         anchor.setAttribute("href","#");
    }
	


   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "disclaimer") 
   {
      var disclaimerURL = anchor.getAttribute('href');
      anchor.onkeydown = function(e){if(e.keyCode == 13) {window.open('/ir/btsm/ar2009/html/disclaimer.html', 'CtrlWindow', 'toolbar=no,menubar=no,height=525,width=638,location=no,scrollbars=yes,resizable=no,status=no,left=100,top=100');return false;}}
      anchor.setAttribute("href","#");
      anchor.onclick = function(){window.open('/ir/btsm/ar2009/html/disclaimer.html', 'CtrlWindow', 'toolbar=no,menubar=no,height=525,width=638,location=no,scrollbars=yes,resizable=no,status=no,left=100,top=100');return false;}
      anchor.setAttribute("href","#");
      }

}
}
window.onload = externalLinks;