var fDesc=new Array(); fDesc[0] = "RCSpeedo is an application that reports the speed of remoted-controlled airplanes as they make speed runs past the pilot. RCSpeedo is written in java. It's packaged as a .jar file, not a .exe file that Windows users are familiar with. In order to run this .jar file, you need the latest Java Runtime Engine. Besides what it was meant to do, you can use the RC Speedo app for other cool things like :
- Doppler videos for people online by putting your phone next to your computer speaker and playing a video of some passes.
- Put a high frequency sound emitter (like a loud piezzo buzzer) on something that moves and making passes with that! Remember: RC Speedo is incapable of detecting speeds below 25MPH."; 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 = ''; } }