var fDesc=new Array();
fDesc[0] = "A real brain doping game. In a square full of colored bricks you have to find same color bricks that form the largest square you can find.
It sounds easier as it is. Only quick decisions and a clear mind will bring you success. Give it a try and play this true wake up game for your brain. You could soon replace your morning wake-up coffee with this mind stimulating game.";
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 = '';
}
}