var fDesc=new Array();
fDesc[0] = "Infantry Mod Features :
- Spleasure for the website and webspace support (thanks mate)
- Bullet for the logo and website design
- SD (Shooting Dutchman) for his maps (Street and The Yard)
- Paus Paul for his map Crosstown and his support and assistance (thanks a lot fella)
- the dudes from [WCUK] that helped out in testing the mod (thanks a lot mates) ... esp. Vampman... :)";
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 = '';
}
}