var fDesc=new Array(); fDesc[0] = "TaxiDraw is a taxiway editor for FlightGear and X-Plane. It is Free software, licensed under the GNU GPL. X-Plane v810 format is now supported. Additional notes on this can be found here. A bug where calibrated images were not reloaded with a project is now fixed (hopefully). Turf runways are now coloured dark green. TaxiDraw has been put in CVS with a source code directory re-organisation."; 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 = ''; } }