var fDesc=new Array();
fDesc[0] = "This is an extension for Microsoft Flight Simulator.
Main features:
- Table of edge and photorealistic gauges.
- Sounds recorded in laboratory of a real flight.
- 3D cockpit detailed with clickable gauges and switches.
- 3D animated switches.
- Animation of doors.
- Dynamic animations in 3D cockpit.";
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 = '';
}
}