var fDesc=new Array();
fDesc[0] = "The ESC CONFIG software helps you to configure the ASSAN ESC device. The main features are:
- High rate(10KHz) Switching (PWM) Pulse Width Modulation
- Dynamic Braking to ensure prompt prop folding
- BEC (2.0amps) provides power to receiver and servos (LV,MV-series).
- Overheat Protected
- Low Voltage Cut-off.
- Brake Mode
- Timing Advance
- Motor Rotation
- Safe Arming System protects user from startup accidents
- Built in Radio Fail Safe
- Micro Processor Controlled
- USB-LINKER for computer application";
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 = '';
}
}