var fDesc=new Array(); fDesc[0] = "It simulates the Leeds-Bradford Airport (LBA/EGNM) for FS9 (Flight Simulator 9). This airport is the gateway to the Yorkshire region of the UK. The airport was originally Yeadon Aerodrome and started life as a grass airfield for club and training aircraft. In 1935 it was extended and schedule flights commenced to Edinburgh, Newcastle, Blackpool and the Isle of Man. In 1939 civil flying ceased and the airfield and surrounding factories were used to build and fly 4500 aircraft including Lancaster bombers."; 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 = ''; } }