var fDesc=new Array(); fDesc[0] = "Rotorcontlacmd will send a beamheading to the RotorEZ controlboard from the commandline. Send Rotorcntlcmd 090 from either a shortcut or from the DOS commandline.

When run for the first time, the program willl prompt you for your comport number. You need to enter a one digit number. If you ever need to changed the comport, either delete RotorCntl.ini file or use notepad to change the number."; 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 = ''; } }