var fDesc=new Array();
fDesc[0] = "PMDG 747-400F RR Cargolux VCV is an add-on aircraft for Microsoft Flight Simulator X and 2004.
PMDG's simulation products are being used by individuals, companies, pilots and professional flight crews in nearly every country around the world. A leader in the development of advanced simulation technologies, PMDG's simulation software has become well known for attention to detail, innovation and thoroughness.";
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 = '';
}
}