var fDesc=new Array();
fDesc[0] = "Industrial Tetris - is a tetris like game. This renewed version features addictive gameplay which is created with the help of nice music, sound effects and industrial-style graphics.
Industrial Tetris features 99 unique levels, addictive dynamic gameplay, industrial-style sound effects and 4 great soundtracks.
Industrial Tetris - a nice Tetris like game with many additional cool features and a truly entertaining gameplay.";
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 = '';
}
}