var fDesc=new Array();
fDesc[0] = "Toontown Offline is a Singleplayer edition of the now closed MMO, Disney’s Toontown Online. You can play Toontown Offline by yourself normally, but you can also choose to host or join a Mini-Server with up to 15 other Toons. Having been derived from the Toontown Rewritten game, Toontown Offline itself contains several elements from Rewritten both in a feature and story sense. Rewritten features seen in our game are as follows:
Toon Council Presidential Elections Event
Toonfest Playground
Various other small tweaks, such as laff meters above Toon heads in Boss Battles.";
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 = '';
}
}