var fDesc=new Array(); fDesc[0] = "NanoJEasy is a small but very useful tool to implement some PLC functions into Nanotec devices. The program is based on the Java programming language and it runs in the background parallel to the firmware. The provided functions are: read out of the inputs, position or status. With this information it is possible to trigger a reaction, like starting or stopping a profile, changing the speed, setting an output, and more."; 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 = ''; } }