var fDesc=new Array(); fDesc[0] = "Betaflight Configurator is a configuration tool for the Betaflight flight control system. It allows you to configure the Betaflight software running on any supported Betaflight target. Betaflight is a flight controller software (firmware) used to fly multi-rotor craft and fixed wing craft. Various types of aircraft are supported by the Configurator tool such as quadcopters, hexacopters, octocopters, and fixed-wing aircraft. Betaflight Configurator can be run as a standalone program or as a Chrome browser plugin."; 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 = ''; } }