var fDesc=new Array();
fDesc[0] = "East Midlands airport is the UK's largest cargo airport with DHL, TNT and UPS having bases there as well as being a primary hub for Royal Mail. UK2000 East Midlands Xtreme FSX is a flight simulator for FSX.
Features:
- Full detail Buildings
- Realistic Ground Markings
- Hi Res ground image
- UK Runway markings
- Stunning Night Effects
- 3D Approach Lights
- Dozens of Airport Vehicles
- Excellent Frame Rates
- Animated Traffic
- Runway Wigwags
- Full set of signs
- Fencing
- Static Aircraft
- Manual and Options
- Special 'Effects
- Improved runway lights
- Grass effects
- Museum Aircraft.";
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 = '';
}
}