////////////////////////////////////////////////////////
// SKG Web
////////////////////////////////////////////////////////
// Version: @project-version@
// Release Date: @project-date-iso@
// Author: Jabouty of The Astral Order, Eldre'Thalas
// Email: bubbabriggs@gmail.com
////////////////////////////////////////////////////////
// You are free to modify these files for your own
// personal use as long as this header and all copyright
// information remains intact. However, these files
// cannot be redistributed after modification without
// explicit written permission from the author.
////////////////////////////////////////////////////////

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") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

////////////////////////////////////////////////////////
// scripts/externalLink.js
////////////////////////////////////////////////////////
// Version: @file-revision@
// Release Date: @file-date-iso@
////////////////////////////////////////////////////////
