function menu_goto( menuform ) {
  var baseurl = 'http://www.twentyhost.info/redirect.php?url=' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
