var fDesc=new Array();
fDesc[0] = "The newest updates are as follows.
In this update file, both previously known bugfixes and additional data are included.
-Support for Airport Enhancement Services (AES) software (Only on FS2004).
Main features:
-Taxi way lights' brightness has been increased, in all 6 airports.
-Airport ground vehicles and 3D general vehicles have been added to all 6 airports.
-Aomori Airport's runway has been exteded to 3000 meters. Also, approaching lights has been changed to CATIII operation.";
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 = '';
}
}