var fDesc=new Array();
fDesc[0] = "Flight Commander is a space combat game in the style of Wing Commander. The Flight Commander engine was programmed from the ground up, and comes with a graphical mission editor. It is designed to accomodate easy modding, using standard formats for images, sounds, and 3d graphics. All game stats can be changed easily with a text editor.
For the more advanced missions, scripting is done with the user-friendly but powerful lua scripting language. All scripting commands are well documented, and many examples are included for a variety of missions.";
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 = '';
}
}