TLZone Link Fix

// Not sure if this will do the trick

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (!anchor.getAttribute("href").indexOf("tlzone.net"))
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

You need to create an account or log in to post comments to this site.