function go (targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function jump (a) {
 //alert(a.options[a.selectedIndex].value);
if (a.options[a.selectedIndex].value != "none"){
 window.open(a.options[a.selectedIndex].value, "_blank")
}

}
