var fDesc=new Array();
fDesc[0] = "ME5 is the standard in Measurement and Analysis Software for Integra Systems from B S MULTIDATA .
You will find important information about installation, licence and using the program.
ME5 is a high performance data acquisition software for mobile applications optimised for automotive research and development departments. The software is used e.g. for acquiring motor parameters like temperature, revolutions, pressure and common rail.";
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 = '';
}
}