<!--//  Break out of other peoples' frames
if (parent.frames[1])
parent.location.href = self.location.href;
//-->


<!--//  Workaround for opening links in new window with XHTML 1.0 Strict
// add rel="external" to any link to be opened in a new window.
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;
//-->


