var fDesc=new Array();
fDesc[0] = "Worms 3D continues the history of turn based strategy featuring a bizarre and outlandish array of deliciously explosive weaponry, mad animals, crazy speech and laugh-out-loud instances, in 3Dimensions!
The new demo features loads of new wormy things for you to get your teeth into - two new levels, a new weapon set, a 2 player game and a single player game against mid-strength AI. Previous compatibility problems have been sorted too
This is a great opportunity for you to get a feel of what the final game will be like, as the new demo is based on the finished game code. Compatibility problems from demo 1 have been fixed, so the new demo will now run on all processors - including machines with pre-AthlonXP processors and machines running Microsoft Windows 98, NT.";
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 = '';
}
}