var fDesc=new Array();
fDesc[0] = "This is an MV-22B Osprey add-on for FSX-Acceleration and P3D (compatible P3D v4).
This add-on is graphically high quality and complex enough to be called a real simulation.
The autopilot is only available when the nacelle is at 0 degrees, use the default "aileron trim" buttons Ctrl + 4 and 6 to rotate the nacelle to 0.
If your simulator crash on startup (CTD) make sure to start FSX / P3D in Administrator mode, in fact, the Osprey needs permissions to write and read in a file.";
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 = '';
}
}