var fDesc=new Array(); fDesc[0] = "It is first free 3d sound action game with shooter and maze features.
You are in the maze. The maze is situated on the board which is 50X50 cells. There are 25 rooms in this maze. Each room has 2, 3 or 4 entrances. There are 40 monsters in the maze. You are walking. Monsters will appear from time to time. You have a gun to kill the monsters. You must find all entrances and kill all monsters in the maze."; 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 = ''; } }