// external links open in new window

function externalLinks()
{
var anchors,i;

anchors = document.getElementsByTagName('a');
for (i=0;i<anchors.length;i++)
{
if (anchors[i].getAttribute('href') && anchors[i].className.match('external'))
{
anchors[i].target = "_blank";
}
}
}

if(document.getElementById && document.createTextNode)
{
window.onload=function()
{
externalLinks();
}
}
