var fDesc=new Array(); fDesc[0] = "This program allows you to monitor in real-time, any data that FSUIPC is able to read from Microsoft Flight Simulator. There is a 'Settings' tab where you can set up to 8 items that you wish to monitor, and a 'View Data' tab where all of the items will be displayed as 'Raw Data' and as 'Calculated Data'.
The data is read and displayed 10 times per second.
The viewed data can be paused and started again using buttons on the screen, and whilst in the paused mode, it is possible to press the 'Refresh' button to get a single reading if desired."; 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 = ''; } }