var fDesc=new Array();
fDesc[0] = "With this simulation software, computer pilots can experience first hand what it is like to fly the real ATR 72-500. Explore the 3D exterior model and listen to the real cockpit and engine sounds recorded from the real ATR in a runup in Toulouse. Select to fly from the Captain's or First Officer's panel in either of the standard brown or newly available blue/grey cockpit configuration";
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 = '';
}
}