var fDesc=new Array();
fDesc[0] = "Challenge your mind in the wondrous depths of The UnderGarden™. Plunge into a unique new world exploring large underground caverns, encountering mysterious creatures to befriend or avoid.
Solve mind-bending brainteasers and puzzles as soothing tunes accompany you on your journey through 20 distinct levels of state of the art 3D graphics.
The UnderGarden™ offers a mental challenge and aesthetic experience like nothing else.";
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 = '';
}
}