// Thanks to Andy Nelson for this code
function targetLinks(boNew) {
  var my_hostname1 = "www.huskieshoops.com"; // your hostname
  var my_hostname2 = "huskieshoops.com"; // your hostname
    voidURL =  "javascript:void(0)"

  if (boNew) where = "_blank";
  else where = "_self";
  

  for (var i=0; i<=(document.links.length-1); i++) {
    if (document.links[i].id == "new") {
      document.links[i].target = "_blank";
    }
    else {
      if (document.links[i].id == "same") {
        document.links[i].target = "_top";
      }
    else {
      if (document.links[i].href != voidURL) {
        if ((document.links[i].hostname != my_hostname1) &
            (document.links[i].hostname != my_hostname2)) {
          document.links[i].target = where;
        }
      }
      else {
        document.links[i].target = "_top";
      }
    }
  }
}
}