var fDesc=new Array();
fDesc[0] = "MegaSceneryEarth Arizona-007 is a map for Flight Simulator X.
This program is a simulator that helps you to develop a plan by flying your favorite places in hyper-realistic detail. The program allows you to visit airports like KGCN Grand Canyon Natl Park and AZ40 The Ranch.
It also contains a realistic and large collection of Photo-Scenary for Microsoft Flight Simulator X.";
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 = '';
}
}