var fDesc=new Array();
fDesc[0] = "ECU Manager is a free toolset for Decs Engine Control Units. This software is easy to use and designed to configure your decs ecu with features as monitoring, logging and trending.
ECU manager runs as a 32-bit application on MS Windows®.
Features:
- Communication (RS232, Bluetooth)
- Configure the ECU
- Monitoring
- Status view
- Reading fault codes
- Trending
- Logging
- On screen dashboard";
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 = '';
}
}