var fDesc=new Array(); fDesc[0] = "Shooter Ben is a shooter-platformer developed by the Armure company. You control Ben, the sole survivor of the accident at the nuclear power plant. The game has two modes: "Story" and "survival." In the "stories" mode you need to go through 9 challenging levels full of zombies. In "survival" mode, try to say alive as long as possible, protecting yourself from the zombies.
Controls:
W, A, S, D - direct character.
Space - change weapons.
Left mouse button - shoot.
Right mouse button - punch.
Middle mouse button - throw grenades."; 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 = ''; } }