function blanklinks()
{
    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') == 'blanklink')
            anchor.target = '_blank';
    }
}

function slowdownScroll() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      sctop = document.body.parentNode.scrollTop;
   }
   else if(window.pageYOffset){
      sctop = window.pageYOffset;
   } else {
      sctop = document.body.scrollTop;
   }

   if(sctop){
      scup = Math.ceil(sctop*.2);
      scrollBy(0,-scup);
     if (sctop-scup) setTimeout("slowdownScroll()",20);
   }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
