var fDesc=new Array();
fDesc[0] = "PowerDynOBD is an ideal performance measurement tool for anyone who is seeking to get the maximum performance out of his/her vehicle.
Main features:
- Works on all vehicles meeting the OBDII/EOBD requirements, petrol or diesel engined.
- Measure of power and of torque depending on the rpm
- Measurement of braking distances
- Measurement of fuel consumption
- Measurement of acceleration (400 m D.A, 1000m D.A)
- Automatic detection of gear ratios
- Automatic detection of the SCx
- Multiple chart functions, zoom, printing, export";
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 = '';
}
}