var fDesc=new Array();
fDesc[0] = "The PC based diagnosis system DIWAGNOSIS provides optimum support to the user in the monitoring of transmission functions and in troubleshooting and repair:
- DIWAGNOSIS also extends to peripherals such as push button switches or the accelerator pedal.
- DIWAGNOSIS supports preventive maintenance and repair and therefore contributes to reductions in downtimes.
- DIWAGNOSIS shows faults that have occurred in chronological order, which makes it possible to draw clear conclusions from previous events individual and chains of events.";
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 = '';
}
}