var fDesc=new Array();
fDesc[0] = "Tetrizle is a logic Tetris-like and puzzle-like game.
The target of the game is to construct a picture from falling tetromino pieces.
Features:
-Default campaign consisting of 100 levels
o Beautiful pictures
o Gradually increasing difficulty
o About 6 hours of gameplay
-Level creator for creating own levels and campaigns from own pictures
o Selectable figure size
o Selectable field background
o Randomization of rotation
o Picture outline
o Selectable number of lives and target time
o Every new game, even within same level, is a random set of figures
-Level installer for creating own installation packs of levels and campaigns
o Create level campaign from family or friend photos and present it to them";
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 = '';
}
}