var fDesc=new Array();
fDesc[0] = "Fireworks Pack for Pocket Tanks Deluxe. The Fireworks Pack - 15 weapons:
Fireworks - Colorful pyrotechnic display that can pack a serious wallop;
Super Nova - Huge 'star' burst of bullets that travels through land and air;
Great Wall - Builds "The Mother of All Walls", from the bottom to the very top;
Snowblower - Covers your 'neighbor' in a thick layer of the fluffy stuff;
Lava Cannon - Burns through the terrain and starts fires along the way;
Solar Flare - Bullets rain down across the playfield, being underground is smart;
10 Shot - Typical 'shot' weapon that includes ten warheads;
Stinger - Massive 'V' of bullets that is very useful and very dangerous;
Mega Reaction -Nuclear enhanced Chain Reaction weapon, extremely powerful;
Ant Farm -Flying and digging warheads create 'ant hills' around enemy tank;
Sonic Blast - Massive shockwaves rip through both land and air;
Rockslide - Boulders tumble downhill, damaging and burying opponents;
Lightning Rod - Calls lightning down from on high;
Star Dust - Dust flies everywhere causing damage and confusing sensors;
Water Balloons - Launch a barrage of water-filled balloons... you'll love it!";
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 = '';
}
}