var fDesc=new Array(); fDesc[0] = "FSX Planner is a graphical editing tool designed to help users edit existing airports or create new ones for use within Microsoft's Flight Simulator X. The main display of FSX Planner shows a top down view of the airport. You can work on multiple airports simultaneously, each one having its own window. The display shows all aspects of the airport and is completely customizable. This allows you to display and focus on only those parts of the airport that are of current interest."; 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 = ''; } }