var fDesc=new Array();
fDesc[0] = "Explore the vast world of Wonderland, meet and interact with other characters, go on adventures, learn to use magic, and encounter new surprises around every corner. Wonderland Adventures is a family-friendly game that can be enjoyed by young and old alike.
Wonderland Adventures returns you to the magical world of Wonderland for an all-new puzzle adventure. Once again, the safety of Wonderland is threatened, and it is up to you to save the day. Featuring entirely re-designed gameplay mechanics, puzzle elements, 3D visuals, and more. This is Wonderland like you've never seen before.";
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 = '';
}
}