//copyright @ 2009 weburge.com. All Rights Reserved.
//Please visit www.weburge.com for web building tools, resources and information.

function externalLinks() {
   if (document.getElementsByTagName) {
      var anchors = document.getElementsByTagName('a');
      for (var i = 0; i < anchors.length; i++) {
         var anchor = anchors[i];
         if (anchor.getAttribute('href') && anchor.getAttribute('rel') == 'blank')
            anchor.target = '_blank';
      }
   }
}

if (window.onload != null) {
   var func = window.onload;
   window.onload = function() { func(); externalLinks(); };
} else {
   window.onload = externalLinks;
}
