var fDesc=new Array();
fDesc[0] = "Toki Tori is a highly entertaining puzzle platformer like nothing you have seen before. Push your brain to the limit as you guide Toki Tori through 80 challenging levels spread over 4 mysterious worlds - collecting eggs as you go.
You are armed with an arsenal of different items and weapons including the infamous Telewarp, InstantRockā¢ and Slug Sucker! Combine these to solve each ingenious level - some easy, some brain-bendingly difficult!";
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 = '';
}
}