var fDesc=new Array();
fDesc[0] = "An exciting new Wonderland game adventure!
The unique mix of puzzle solving and arcade/action is back in Wonderland Secret Worlds. A magical storm has blown into Wonderland and swept away the little Stinkers. It is up to you to rescue them. Control Wonderland's four heroes - Stinky, Loof, Qookie, and Peegue - through over a hundred new levels in the diverse worlds of Wonderland.";
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 = '';
}
}