function menu_goto( menuform )
{

  var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url"  class="GamesListDropDown" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Select VoiceServer</option>' );
document.writeln( '<option value="mumble.php">Mumble (murmur)</option>' );
document.writeln( '<option value="teamspeak-2.php">Teamspeak 2</option>' );
document.writeln( '<option value="teamspeak-3.php">Teamspeak 3</option>' );
document.writeln( '<option value="ventrilo.php">Ventrilo</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );
