var fDesc=new Array(); fDesc[0] = "Worms 2 is a turn based game where up to 6 players can participate in any given match. You command a platoon of Worms who inhabit a randomly generated terrain, it's time to do or die, put up or shut up.

You must destroy the other Worms with an assortment of devastating weapons. Each turn is limited to a set number of seconds, this time limit allows you to position your Worm in a nearby safe place, collect one of the bonus items sprinkled around, or go and attack a neighbouring Worm! Battle continues until only one team of Worms remain!"; 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 = ''; } }