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 a game</option>' );
document.writeln( '<option value="battlefield-2-unranked.php">BattleField 2</option>' );
document.writeln( '<option value="call-of-duty.php">Call Of Duty</option>' );
document.writeln( '<option value="call-of-duty-united-offensive.php">Call Of Duty:UO</option>' );
document.writeln( '<option value="call-of-duty-2.php">Call Of Duty 2</option>' );
document.writeln( '<option value="call-of-duty-4.php">Call Of Duty 4: ModernWarfare</option>' );
document.writeln( '<option value="call-of-duty-5-waw.php">Call Of Duty 5: World At War</option>' );
document.writeln( '<option value="counter-strike.php">CounterStrike 1.6</option>' );
document.writeln( '<option value="counter-strike-source-66-tick.php">CounterStrike Source: 66tick</option>' );
document.writeln( '<option value="counter-strike-source-100-tick.php">CounterStrike Source: 100tick</option>' );
document.writeln( '<option value="condition-zero.php">Condition Zero</option>' );
document.writeln( '<option value="day-of-defeat.php">Day of Defeat</option>' );
document.writeln( '<option value="day-of-defeat-source.php">Day of Defeat Source</option>' );
document.writeln( '<option value="day-of-defeat-source-100-tick.php">Day of Defeat Source: 100tick</option>' );
document.writeln( '<option value="enemy-territory-quake-wars.php">Enemy Territory: QuakeWars</option>' );
document.writeln( '<option value="killing-floor.php">Killing Floor</option>' );
document.writeln( '<option value="left-4-dead.php">Left 4 Dead</option>' );
document.writeln( '<option value="left-4-dead-2.php">Left 4 Dead 2</option>' );
document.writeln( '<option value="medal-of-honor-allied-assault.php">MOH: Allied Assault</option>' );
document.writeln( '<option value="medal-of-honor-pacific-assault.php">MOH: Pacific Assault</option>' );
document.writeln( '<option value="medal-of-honor-spearhead.php">MOH: SpearHead</option>' );
document.writeln( '<option value="tacticalops-assault-on-terror.php">TacticalOps: Assault on Terror</option>' );
document.writeln( '<option value="team-fortress-2.php">Team Fortress 2</option>' );
document.writeln( '<option value="track-mania-nations-forever.php">TrackMania Nations Forever</option>' );
document.writeln( '<option value="unreal-tournament.php">Unreal Tournament</option>' );
document.writeln( '<option value="unreal-tournament-2004.php">Unreal Tournament 2004</option>' );
document.writeln( '<option value="wolfenstein-enemy-territory.php">Wolfenstein: Enemy Territory</option>' );
document.writeln( '<option value="wolfenstein.php">Wolfenstein</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );