var fDesc=new Array();
fDesc[0] = "Do you want to try an MGL XTreme? Its possible right now by downloading the simulation program (requires a PC running Windows NT, 2000, XP or VISTA) which simulates the operation of the XTreme EFIS. The simulator allows you to almost fully operate a virtual XTreme.
The XTreme is a full featured Electronic Flight Information System and Engine Monitor all wrapped up into a compact instrument that fits a standard 3 1/8" instrument hole.
The XTreme has a high resolution, wide viewing angle 4.3" sunlight readable (600nits brightness) display.";
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 = '';
}
}