var fDesc=new Array();
fDesc[0] = "Spetrix is a Tetris like game. Can you play ?
Play Spetrix ! New colors and new graphics. Use the pieces to create lines. Do you have what it takes to be able to play ?
Spetrix is also playable with the mouse, not only the keyboard.
In the unregistered version you are limited of making only 15 lines per game. Purchares a serial number to remove the limitation and enjoy the fun; but be careful: the game is addictive !!
The game features very colorful pieces and 10 different backgrounds which change when you complete a level.
Try today you tetris skills in normal endless mode or try the 120 lines challenge or the 2 and 4 minutes challenge and get into the High Scores list.";
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 = '';
}
}