/*
 * ----------------------------
 * written by a-frok 2007.09.29
 * ----------------------------
 */

function externalLinks() {
  if (! document.getElementsByTagName ) return;
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++) {
    if (anchors[i].getAttribute("href") && anchors[i].getAttribute("rel") == "external") {
      anchors[i].setAttribute("onclick","window.open(this.href); return false;");
    }
  }
}

window.onload = externalLinks;

