function surfTo(selectlist) {
   var url = selectlist.options[selectlist.selectedIndex].value
   if (url != '') {
      if (url.indexOf('http://') > -1)
      top.location.href = url;
      else
      top.location.href = url;
}
}