var fDesc=new Array();
fDesc[0] = "PicoDiagnostics is a complete engine health check. With just a simple connection to the battery you can perform a cylinder balance test, detect misfires, carry out a compression test and test batteries, starter motors and alternators. The results are displayed in a bargraph that can easily be understood by both you and your customer.
With PicoDiagnostics you can quickly check the health of most petrol and diesel engines. There’s no complicated procedures — simply connect one channel of your oscilloscope to the battery of the vehicle to be tested, run PicoDiagnostics, select your test and click a button.
Once PicoDiagnostics has completed the test, the results are displayed in a bar graph that makes it easy for anybody to understand. Using this report printing feature you can then produce a professional quality report suitable for presenting to customers.";
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 = '';
}
}