var fDesc=new Array();
fDesc[0] = "FDS is the simulation of the realistic dynamic behaviour of an aircraft.
Features:
-flying different engine powered aircrafts,
-flying a glider with winch start and with thermic,
-flying a RC(remote controlled)aircraft model as a pilot fixed to the ground ,
-creating aircrafts in different configurations and testing their characteristics in flight,
-flying Air Race";
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 = '';
}
}