function go(form, name) {
   var url = form[name].options[form[name].selectedIndex].value;
   if (url != "") location.href = url;
   return false;
 }