var fDesc=new Array();
fDesc[0] = "Electromotive has been developing Calibration Software for many of their products since the 80's.
Most recently they have added support for the TEC3, TEC3-6/12 and TEC3R. The TEC3 line will need a hardware modification to run WinTEC4 software.
Easier menu navigation for improved oversight of the tuning process is the main focus of this effort. A new approach to monitoring engine functions has been taken, resulting in a more integrated on-fly tuning process.";
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 = '';
}
}