var fDesc=new Array();
fDesc[0] = "FlyingGuns is a flight- and battlefield simulator used to develop and test approaches for low-resource, internet enabled games and distributed simulation. Areas of application might be industrial and military simulation or entertainment.
The same time, FlyingGuns is a 3D action computer game capable of single- and multiplayer gaming.
- Provide the community with a flight sim game that is really fun.";
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 = '';
}
}