function selecturl(s) {
  var goURL = s.options[s.selectedIndex].value;
  
  if ((goURL != null) && (goURL != "")) {
    window.top.location.href = goURL;
  }
}
