var fDesc=new Array(); fDesc[0] = "Six-Trix combines three original tetris-style games based on the pieces made up of 6 blocks. The pieces can be rotated around 3 axes in space. The idea of the first Game is to fill the horizontal lines with blocks, but the rules are more complex: a piece color is also important. In the Game 2 pieces are made up of the blocks of 5 different colors and piece fall causes the adjacent blocks of the same color to disappear. The Game 3 is similar to the Game 1. But the Tetris Creator is moving in the game pit. If a piece falls down on him, then the game will be finished. True color and high resolution (800x600) graphics."; 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 = ''; } }