var fDesc=new Array();
fDesc[0] = "Ground Environment X Europe is an add-on for Microsoft Flight Simulator X. Ground Environment X Europe allows a simulation pilot to enjoy clearly defined visuals from nearly ground level up to higher altitudes.
Main Features:
- Complete coverage of Europe from the Arctic Circle through Southern Greece.
- Enhanced textures to assist in rendering clear visuals as low as 250-500 ft.
- High volume autogen layout with optimizations for maximum performance.";
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 = '';
}
}