<!--
    /* credit to randomwalks.pitas.com for this checkbox hack */
    function targetLinks(checkbx)
    {
      if (checkbx) 
        where = "altWindow";
      else
        where = "_top";
      for (var i=17; i<=(document.links.length-1); i++) {
        document.links[i].target = where; 
      }
    }
// -->