var fDesc=new Array();
fDesc[0] = "Crazy Grab is a collection of four games having one thing in common: try to get as many pieces as possible in the least of time to let your point score rise higher and higher.
The collection includes the following games: Matrix, Modlo, Trill and Gimus.
Matrix: The puzzle consists of a system of buttons.
Modlo: On a 4x4 game area there are 16 doors.
Trill: The big picture, showing an unimpossible object, consists of 9 tiles in a 3x3-matrix.
Gimus: On the quadratic game area, which size can vary from 3x3 to 7x7, are some game elements, the so-called Gimuses";
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 = '';
}
}