var fDesc=new Array();
fDesc[0] = "Gruntz is a combination of puzzle solving, action, and strategy.
It's also frustrating, goofy, funny, and totally addictive!
The King himself was taking a break from all his kingly duties so that he could enjoy the day with the rest of his clan. Grumley had just gotten a new beach ball that day, and was happily playing with it on the hill.";
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 = '';
}
}