<!--
function go() {
   idx = document.forms[0].elements[0].selectedIndex;
   url = document.forms[0].elements[0].options[idx].value;
   if (url != "") {
      if (url.substring(0,5) == "http:") {
         open(url,"NewWindow")
//         top.location.assign(url);
      } else {
         self.location=url;
      }
   }
}
//-->

