/*
 * ext_links.js(v1), date: 02.29.08
 * http://www.seydoggy.com
 * Function to generate "open in new window" link as W3C compliant
 */

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";
if (anchor.getAttribute("href") && 
anchor.getAttribute("rel") == "ejunkie") 
anchor.target = "ej_ejc";
if (anchor.getAttribute("href") && 
anchor.getAttribute("class") == "ec_ejc_thkbx ejonclick") 
anchor.onClick = "javascript:return EJEJC_lc(this);";
} 
} 
window.onload = externalLinks;