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") == "_blank")
     anchor.target = "_blank";
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "_top")
     anchor.target = "_top";
 }
 anchors = document.getElementsByTagName("form");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "_blank")
     anchor.target = "_blank";
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "_top")
     anchor.target = "_top";
 }
 anchors = document.getElementsByTagName("area");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "_blank")
     anchor.target = "_blank";
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "_top")
     anchor.target = "_top";
 }
}

window.onload = externalLinks;

function popUp(url) {
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=425,height=250');
self.name = "mainWin"; }

function FooterHighlight(element, value)
{
element.src = "/images" + "/" + (value ? "h_" : "") + element.id + ".gif";
}

