﻿// JScript File

//"Click to activate and use this control" IE workaround
 
function header(site)
{
	document.write('<object type="application/x-shockwave-flash" data="/images/header' + site + '.swf" style="width:780px;height:194px;">\n');
    document.write('<param name="movie" value="/images/header' + site + '.swf"/>\n');
    document.write('<param name="wmode" value="transparent" />\n');
    document.write('</object>\n');
}

//XHTML compliance replacement for "target=_blank"

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;