var fDesc=new Array();
fDesc[0] = "Sukhoi Su-27 Poland will add the Sukhoi Su-27 to your FS2004.
The Sukhoi Su-27 is a one-seat Mach-2 class jet fighter originally manufactured developed by the Soviet Union, and designed developed by the Sukhoi Design Bureau. The Su-27s basic design is aerodynamically similar to the MiG-29, but it is substantially larger. It is a very large aircraft, and to minimize its weight its structure has a high percentage of titanium (about 30%, more than any of its contemporaries).";
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 = '';
}
}