var fDesc=new Array(); fDesc[0] = "The AManager software allows you to control, set up, and diagnose Biffi electric actuators. The program can work in “disconnected” or “connected” mode. In “disconnected” mode, the actuator is not connected and the program can work only with previously exported files. In “connected” mode, the actuator is connected to the PC and the data of the actuator can be viewed and changed according to username."; 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 = ''; } }