var fDesc=new Array();
fDesc[0] = "Make your Wilco feelThere Airbus come alive with this exciting multi-crew expansion pack from FS2Crew. Fly your Airbus just like real Airbus pilots.
Features:
Functions with all available models from the Wilco feelThere Airbus series Volume 1 and 2.
Real Airbus SOPs and checklists in a multi-crew environment!
You are the Captain and Pilot Flying (PF). The FO will perform his flows and make calls just like he would in real life. He'll even fill out a very realistic Takeoff Data Card and hand it to you!
The most realistic Airbus experience ever! A must have for serious Airbus pilots!
Designed in close consultation with a real-world Airbus pilot to ensure maximum fidelity to actual Airbus procedures.
Interact with your First Officer, the FA and the ground crew including Company ops.
Experience FS2Crew's brand-new (and very user friendly) graphical user interface system.
Tackle new situations: Air Rage, Bird Strikes and even Passengers smoking in the Lavatory!
Voices recorded by real-world flight and cabin crew.";
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 = '';
}
}