var fDesc=new Array(); fDesc[0] = "Defend army headquarters with tanks and kill the hostile ones. One or two players defend army headquarters from enemies and kill all the enemies to pass to next game. Player(s): light tank (one star), middling tank (two star), and heavy tank (three star). Enemies: armored car, combat car, light tank, and heavy tank. Contravallation: yellow brick, red brick, and concrete. Award: stars, tanks, and medals. Battlefield: meadow, rocks, rivers, and trees."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }