var fDesc=new Array();
fDesc[0] = "It's an add-on for exclusive use with MS Flight Simulator X. Flight SimulatorX with SP1 (SP2 recommended) or Acceleration is required, as well as a video card with DirectX9.0c or later version.
This expansion provides the Boeing 777-300 aircraft with 2D and 3D cockpit, and a flight dynamic to have you able to immerse in the operation of B777-300
in the Microsoft Flight Simulator X.";
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 = '';
}
}