<!---
function voidGoPage(s)
{
   if (s.options[s.selectedIndex].value != "")
   {
     var d = s.options[s.selectedIndex].value;
     window.top.location.href = d;
     s.selectedIndex=0;
     return;
   }
}

// --->