var fDesc=new Array();
fDesc[0] = "SK-720 Digital Flybar is a software for SK-720 Flybarless System which allows you to control your R/C helicopter.
Features include:
- Flight logging with playback
- Optional self-leveling
- Tail control
- Futaba S-Bus compatibility
- Jeti/Robbe PPM input compatibility
- Graupner/JR Satellite Receiver compatibility
- Choice of 1024 res / 22ms or 2048 res / 11ms Spektrum/JR mode
- 4 aux outputs for scale helis, output on the SW-A port (not available for 4-servo-swash helis).
- Low-voltage error option for 2S lipos, so the unit can warn you to not fly on a dead battery";
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 = '';
}
}