var fDesc=new Array();
fDesc[0] = "Tu-154 B2 is a civil airliner for Microsoft Flight Simulator X.
The complete package features a new visual model, 2D panel with ten sub-panels, virtual cockpit, sounds load editor. Liveries include Siberia Airlines, Krasair and Ural Airlines. Manual comes in Russian and English. FSX Comments: Gauges/VC: Most seem OK but some are missing. Run/OK gauges when prompted. Glass: - visible. All else seems OK.";
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 = '';
}
}