var fDesc=new Array();
fDesc[0] = "MoTeC's fully updatable software is designed to quickly optimise the setup of your vehicle. It is user-friendly with an intuitive menu structure and extensive help screens.
This DOS-based software is designed for setup, tuning and diagnostics of the engine management system. The tuning can be carried out online (with the ECU connected) or offline.
Features:
* Quick Lambda—automated fuel adjustment
* Sensor and status readings, output settings, compensations and diagnostic errors viewing
* 3D graphing of calibration tables
* Site target
* Output testing
* Multiple file comparisons
* Table interpolation
* Table export
* Table maths
* Help screens
This tuning software is no longer updated with new features";
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 = '';
}
}