var fDesc=new Array();
fDesc[0] = "In Ta-Ta Mahatta, the player is the brain behind the Ta-Tas to vanquish the Fungi Colony. The player will start off on the cloud. The cloud is where the player can choose to play a level or hang around and do interesting activities.
The player can choose to play a level by entering the mysterious ‘Level Select’ house. Once inside the house, the player can select any unlocked level to play. A level can only be unlocked by finishing the previous level.
All Ta-Tas have only 3 health points. A Ta-Ta will lose one health whenever it is hit by an enemy or by touching hazardous materials. A Ta-Ta will die when it has no remaining health points. The player loses the level when all Ta-Tas die. The player can then choose to restart the level or return to the cloud level.";
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 = '';
}
}