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