var fDesc=new Array();
fDesc[0] = "TetRize is an ultra-modern 3-dimensional Tetris-like game. The complete version of TetRize includes three types: TetRize, Color TetRize and Colorix TetRize. TetRize is the game similar to classic Tetris. Color TetRize is the color Tetris. A three-tile column falls from the top of the screen. The purpose is to form columns, rows or diagonals of at least three tiles of the same color. Colorix TetRize game is an special variation of Color TetRize. A three-tile row falls from the top of the screen. The purpose is the same.
For each of three game types are available two variations: Classic & Original. Original variation includes new bonuses & it is faster than classic variation. The rules of TetRize are simple --- but it will give unforgettable pleasure to people of every age!";
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 = '';
}
}