var fDesc=new Array(); fDesc[0] = "FlightDesk is flight planning software that optimizes the environment and community created by controllers, pilots, and observers. By filing flight plans through FlightDesk, pilots allow controllers to focus on their jobs. Version 1.1 upgrades several internal features of FlightDesk and adds some new elements to the program including enhanced tracking. The most noticeable addition is the Map tab which allows users to track pilots on a moving map."; 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 = ''; } }