var fDesc=new Array();
fDesc[0] = "The Antonov An-24 is a twin-turboprop aircraft capable of carrying 44 to 52 passengers manufactured in the USSR, (now in Ukraine) by Antonov Engineering. The aircraft was expected to operate in a rustic environment and was particularly successful even with Western standards, however its commercial profitability was low because it was handicapped by a too high unladen mass.
Two essentially military versions have been derived from it, the Antonov An-26 with a large cargo door at the rear and the Antonov An-30 with a glass nose for monitoring and mapping missions.";
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 = '';
}
}