var fDesc=new Array(); fDesc[0] = "A PC software system can be used to easily and comfortably parameterize and diagnose BODAS controllers. Machine values, parameters and diagnostic messages are displayed in plain text. This facilitates fast access to diagnostics. Parameters can be easily set, even without programming knowledge. With the integrated data logger, you can plot measured variables over time. This considerably simplifies optimization of the machine parameters.
Password protection ensures that the machine operator has access to diagnostic facilities at all times while at the same time ensuring that no unauthorized changes can be made to parameters."; 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 = ''; } }