var fDesc=new Array();
fDesc[0] = "Egyptair Fleet Ultimate Pack FSX P3D is an addon for FSX-SP2 & Prepar3D.
All models include: GPWS (Ground Proximity Warning System) with different alarms such as "Bank angle", "Wind shear", "Too Low Terrain", "Dont sink" and so on. A complex tool for managing Push Back (2d panel) a cabin system annoucment (Flightdeck) with voices of the hostesses (panel 2d), voices of the captain and sounds of different activities such as real melodies of Egyptair.";
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 = '';
}
}