var fDesc=new Array();
fDesc[0] = "Geetris, a Tetris extention - play this high quality and challenging action-puzzle game for Windows
Use keen logic and quick thinking to connect coloured areas with bubbles, to have them zapped to the opponent - or just get rid of them by assembling a full line.
This exciting action puzzle game adds a new challenging twist to the addictive Tetris (TM) game. Cool graphics, sound and music, and up to 4 simultaneous players.
Features smooth animation, high score list, demo and replay, and an option to use mouse control.";
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 = '';
}
}