function surfto(form, sname) {
      var myindex= eval("form." + sname + ".selectedIndex");
      var myloc = eval("form." + sname + ".options[myindex].value")
      if (myloc != "0") {
        window.open(myloc, target="_top");
      }
}
