var fDesc=new Array();
fDesc[0] = "Pocket Tanks is designed to be easy to learn, and fun to master. The fastest game of artillery you'll ever play.
Nanobots: A high tech 'cube' bursts into a swarm of robots with lasers [new].
Phase Missile: Missile phases through dirt and orbits tank for bonus damage.
Gyro Glue: Swirling and burning glue with a large area of effect [new].
Warp Gate: Wormhole + explosive objects from the 8th dimension appear.
Tesla Coil: Turns the enemy tank into the center of an amazing epic lightning event [new].";
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 = '';
}
}