var fDesc=new Array();
fDesc[0] = "OpenArena is a Free Content project. Its goal is to create new, original media while providing a stand-alone multiplayer game in the process.
The current supported gametypes are as follows:
- Free for All
- Team Deathmatch
- Tournament
- Capture the Flag
- One Flag Capture
- Overload
- Harvester
- Elimination
- CTF Elimination
- Last Man Standing
- Double Domination
- Domination
Instant Gib and All Rockets weapons modes are supported.
Simulated players, or "bots" are also available for your personal pulverizing pleasure.";
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 = '';
}
}