window.onload = function() {
  el = document.getElementsByTagName("a");
  for (var i=0; i<el.length; i++){
    if (el[i].rel=="ext") {
      el[i].onclick = function () {
        return !window.open(this.href);
      }
    }
  }
}
