var fDesc=new Array();
fDesc[0] = "The Magic Pack - 5 weapons.
Select your angle, power, and fire over 30 distinct weapons at your opponent. There is an innovative Weapon Shop to keep the game moving fast and a Target Practice mode for experimenting with all the weapons "no holds barred!"
Magic Beans: Colorful seeds that explode and sprout walls.
Grab Bag: There's no telling what will happen when it hits.
Railgun: Awesome 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!";
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 = '';
}
}