function windowLoad(event)
{
  var link, anchorList, anchor, i;
  if (document && document.getElementById &&
      (link = document.getElementById("LINK")) &&
      (link.getElementsByTagName) &&
      (anchorList = link.getElementsByTagName("A")) &&
      anchorList.item)
    for (i = 0; i < anchorList.length; i++)
    {
      anchor = anchorList.item(i);
      if (anchor.href)
        anchor.target = "_blank";
    }
  return;
}
window.onload = windowLoad;

