var fDesc=new Array(); fDesc[0] = "Tetris Deluxe includes 6 versions of Tetris, such as Classic Tetris, On-turn Tetris, Horror Tetris, Wide Tetris, Mini Tetris and Mirror Tetris.
Classic Tetris is a simple classic Tetris game. In On-turn Tetris, you cannot turn the block manually, because it turns by itself. To stop the block rotation press the abort button (spacebar or Down button as usual). Playing Horror Tetris, you cannot see how the block is falling, only where it will fall! In Wide Tetris, the layout is not vertical as in other Tetris games, but horizontal instead."; 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 = ''; } }