var fDesc=new Array();
fDesc[0] = "Modes:
- Works with default FS Autopilot as well as our FCU
- Flight Director Inverted V and Crosshair
- Correct FMA
- Worldwide Navdata with monthly updates
- TCAS Display(FS2002 or WhazzUp)
- Displays FS Flight plans, SBP files and CDU-generated Routes
- Terrain Display (EGPWS)
- Weather Radar Display
- Standby Gauges
- Automatic 2 Engine and 4 Engine Support
Software Features
- Fully Resizable
- Bezel frames can be enabled/disabled
- Windowed/Full Screen
- Excellent Graphics Quality
- All Displays can be re-positioned and combined freely
- Displays can be Rotated left and right 90 degrees
- Brightness Factors
- Special Controls for Cockpit Builders
- OpenGL Graphics for best Image Quality
- Support for PFC Inc. Hardware";
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 = '';
}
}