var fDesc=new Array();
fDesc[0] = "ElMod Configurator Software for ElMod Fusion Puma, Fusion Marine and older Fusion ECO/PRO.
Connection The ElMod Configurator requires a free USB port. The second end of the dongle has to be connected to the proper counterpart on the ElMod module.
The module needs the usual power supply (for example a battery) and doesn't have to be removed out from the vehicle. All parameters may be changed at any time, there is no need restart the module for any action.";
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 = '';
}
}