var fDesc=new Array();
fDesc[0] = "You will be flying a simulated avionics package capable of providing the same features and benefits as the real avionics. The Reality XP Flight Line T is a faithful reproduction: each button and knob is fully functional and performs identically to its real-world counterpart.
Flight Line T includes a set of 28 analogue gauges covering the traditional “T-Stack” gauges as found in any “non-glass” aircraft with the following features:
-Bendix King KI256 ADI.
-Bendix King KI525 HSI.
-Bendix King KA51 Gyro Slaving Unit.
-Airspeed Indicators (5 types).
-Altimeters (4 types).
-Attitude Indicators (3 types with 2 pitch cards).
-Directional Gyro (4 types).
-Turn Coordinator (3 types).
-Vertical Speed Indicator (6 types).
-Support for any third-party aircraft lighting system both in the 2D panel and the virtual cockpit.
-Highly accurate needle position and precision on the gauge scales.
-High resolution Photo-realistic gauges bitmaps.";
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 = '';
}
}