var fDesc=new Array();
fDesc[0] = "Aerosoft's - Bronco X is an add-on for Microsoft Flight Simulator X.
Main Features:
- 8 models (US Air Force, US marines, NASA, German Wing of the OV-10 Bronco Association).
- Realistic start-up sequence with propeller start-latches and engine instrument readouts.
- Realistic in-air restarts possible (normally not possible in FSX).
- Hot and hung starts (clearing engine after a hung start possible).";
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 = '';
}
}