var fDesc=new Array();
fDesc[0] = "While the terrain that ships out-of-the-box with FSX is much-improved over previous versions, the newly-enhanced terrain engine still leaves much vacant capabilities to fill. So FSGenesis has bumped it up a notch, filling those capabilities while providing our most accurate and detailed terrain yet, taking advantage of the efficiency of the new all-LODs-in-one-file format introduced in FSX.";
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 = '';
}
}