var fDesc=new Array();
fDesc[0] = "Messerschmitt Bf-109 features:
- Highly accurate VC, with many functioning parts
- ReviC12D gunsight, that can be turned on and off
- 7 different models to cover variations
- Each model features versions with and without pilot lifejacket, for over-water flights
- 7 different textures
- Accurate and challenging ground-handling characteristics;
- Droppable Drop Tank, that removes weight and fuel from the aircraft.cfg for realistic performance
- Droppable bomb
- Accurate pilot flight suit, lifejacket and flight helmet
- 100% authentic Bf-109 startup sounds
- Propeller blades which alter their angle with prop setting
- Functioning automatic/manual coolant flaps, which also serve as landing flaps
- 3D gauges in the VC, for incredible realism";
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 = '';
}
}