var fDesc=new Array();
fDesc[0] = "Pocket Tanks is designed to be easy to learn, yet deep enough to engage the most seasoned artillery fan.
Flamethrower: A huge spray of flaming napalm.
Skimmer: On impact, two bullets fly out horizontally and ricochet off terrain.
Volcano: Massive eruption that throws fire and debris everywhere.
Pedestal: Puts the tank up on a high pedestal.
Fire Storm: Multiple explosions with a sea of awesome bouncing fireballs.
Action full!
Be sure to have enough free time ahead!
You won't be able to leave for quite a while";
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 = '';
}
}