// <!--

function go_to_url1(link) {        
var chosen = link.options[link.selectedIndex].value
  window.top.location.href = chosen
  link.selectedIndex=0
}

function go_to_url(link) {
  if (link.options[link.selectedIndex].value != "#") {
     top.location.href = link.options[link.selectedIndex].value;
  }
}	

//  -->

