function init() {
   var arrAnchors = document.getElementsByTagName("a");
   for (var i = 0; i < arrAnchors.length; i++) {
      if (arrAnchors[i].getAttribute("rel") == "external") {
         arrAnchors[i].setAttribute("target", "_blank");
      }
   }
}
window.onload = init;
