var fDesc=new Array();
fDesc[0] = "ELBUDDY is a new service tool used for replacing previous JavaCanmon service software. ELBUDDY combines previous standard functions of JavaCanmon with the requirements of our new E L components and systems. It is possible to use both service software versions simultaneously on one PC. This might make it easier to adapt to the new software.
Main functions:
- Setting of equipment parameters
- Start of service functions
- Exchange of equipment firmware
- Display of CCD sensor scans
- Display of defect lists
- Display of general equipment functions (software versions …)
- Archive of all the equipment data as one file
- Recovery of equipment parameters from the file with „Drag Drop”";
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 = '';
}
}