var fDesc=new Array(); fDesc[0] = "This game includes 9 levels. The levels have hidden passages in the walls, walls restarting the game, and hidden doors in the wall, so you need to be careful, or rather lucky, since the texture is identical to a regular wall. Controls as in normal games W-Up S-Down D-Right A-Left. This is a puzzle game, short but difficult. There are no saves, but they are not needed either."; 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 = ''; } }