<!--Bookmark
function createBookmark() {
  var title = document.title;
  var url = location.href;

  var ua = navigator.userAgent.toLowerCase();
  var firefox = window.sidebar;
  var ie = (ua.indexOf('msie') >= 0);
  var opera = (window.opera && window.print);

  if (firefox) {
    window.sidebar.addPanel(title, url, "");
  }
  else if (ie) {
    window.external.AddFavorite(url, title);
  }
  else if (opera) {
    var a = window.event.target;
    a.rel = "sidebar";
    a.title = title;
    a.href = url;
  }
  else {
    alert('Press Ctrl-D to bookmark this page');
  }
}
//-->

<!--Break out of frames
    if (top.frames.length!=0)
    top.location=self.document.location;
  //-->
  
<!--Target Blank Replacement
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";  
 }  
}  
window.onload = externalLinks;

  // -->
