var fDesc=new Array();
fDesc[0] = "Virtavia CH-47D Chinook is an add-on for Microsoft Flight Simulator X. The add-on simulates the Boeing-Vertol CH-47 Chinook, which is a versatile, twin-engine, tandem rotor heavy-lift helicopter.
Main Features:
- native FSX model.
- 26 -page PDF illustrated user manual in .pdf format.
- 2-engine control with FSX Acceleration (optional Aircraft.cfg included).
- authentic virtual cockpit with animations and mouse controls.
- hi-res gauges with many custom system functions and switches.";
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 = '';
}
}