var fDesc=new Array();
fDesc[0] = "WABCO has developed interactive presentation and simulation programs for the use in WABCO training sessions.
The programs are: anti-lock air brake system (ABS), electronically controlled braking, system for commercial vehicles (EBS & TEBS-E), electronically controlled air suspension (ECAS). These programs are effectively used in WABCO training sessions for a long time and they support imparting knowledge of commercial vehicle technology multimedia-based.
We are making these programs also available to other educational institutions and interested 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 = '';
}
}