var fDesc=new Array();
fDesc[0] = "Friendly-Strike2 is an arena game based on the Counter-Strike buying weapon system, but drifting in something of less serious or conventional.
Features:
- A Panel of 29 ( 6) weapons is waiting for you. Each weapon has its own particularities, and a use style very personal.
- 19 Arenas having their favorite weapons and leading to gameplay variations.
- 8 special items requiring adaptation and control.
- 6 special weapons with strange powers you have to discover.";
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 = '';
}
}