var fDesc=new Array();
fDesc[1] = "by Blitwise productions, it is easy and fast to play and fun and exciting. A range of 230 weapons is available with expansion packs each adding to the excitement.";
fDesc[2] = "time playing it. Pocket Tanks Deluxe is a simple game, there are two tanks, one controlled by us, the other one is controlled either by the computer or by another player. The aim of the game is to hit the other tank the most before all the weapons are used.";
fDesc[3] = "powerful as the Nuke. Pillow Fight: Direct damage on impact, with exploding feathers for splash damage. Sink and Swim: The enemy tank 'sinks' into a hole, as hail showers them from above.";
fDesc[4] = "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.";
fDesc[5] = "that rains hundreds of bullets, will stop over opponents tanks. Porcupine: Projectiles cut through any defense to hit fortified opponents.";
fDesc[6] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[7] = "disintegration ray that also cuts through terrain [new]. Sand Storm: Amazing dust cloud forms and buries an area in sand. Lemon: This weapon is a 'lemon'. Hope you don't get it!";
fDesc[8] = "bounces, the bigger the bang. Funnel: Trap an enemy tank in a steep valley made of bouncy dirt. Crazy Wall: It's a wall, it's an awesome weapon, and it's a little bizarre.";
fDesc[9] = "lands Comet: Explodes on contact into six highly bouncy fragments Sunburn: Explodes near tank, fires laser beams that bounce off terrain Riptide: Sends out a horizontal wave of reflective missiles";
fDesc[10] = "packs a punch. Collide-o-scope: Colorful, bouncing and homing chain of bullets. Neon Blast: Bright flashes of light confuse and damage the opponent.";
fDesc[11] = "practice for homing missiles. Power Washer - Powerful stream of water targets your opponent. Cheap Shot - Teleports a bomb directly on top of the other tank. Blackout - Neigh invisible bullet that shrouds area with darkness.";
fDesc[12] = ", X-Ray Cannon, Bazooka, Lucky Shot, Shelter, Fire + Ice, Anvil, Flare, Super Flare, Fracture, Claymore, Phantom, Earth Mover, Flak.";
fDesc[13] = "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.";
fDesc[14] = "flaming molten rubber that coats the terrain. Side Kick - Bullets fire from the sides of the playfield. Blockade - Encase enemy tank in a hollow shell. Stun Gun - Two bullets are launched, spreading out over time.";
fDesc[15] = "zagging weapon that is one part skill and two parts luck; Chalk Dust - Calcium bicarbonate has never been so much fun; Mower - Cuts terrain and any nearby tanks down to size; Dive Bomb - Warhead does a bombing run on the other tank.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}