function newurl(dropdown)    
{
  var d = dropdown.options[dropdown.selectedIndex].value;    
  if (d=="") return;    
  window.top.location.href = d;
}    

