
  a = document.getElementsByTagName("a");
  for(var i=0; i<a.length; i++) {
    if(a[i].getAttribute("rel") == "external") {
      a[i].className += a[i].className?" extlink":"extlink";
      a[i].onclick=function(){window.open(this.href);return false}
    }
  }
