var fDesc=new Array(); fDesc[0] = "Advanced Flight Simulator Data (AFSD) is a test program designed to investigate FS internal functioning. The program simultaneously accesses and calculates sophisticated aerodynamical data from Peter Dowson's FSUIPC interface, aircraft binary (.air) and configuration (.cfg) files. AFSD works with FS2004, FSX and P3D. FSUIPC version 3.99 or higher is required for FS9 and FSUIPC version 4.942 or higher for FSX/P3D."; 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 = ''; } }