var fDesc=new Array(); fDesc[0] = "The S-Config 2 program is used for the simultaneous detection of devices in multiple Modbus RTU networks. Each detected device may return additional information about its parameters, such as its type, what address it is located in the network; these additional parameters are shown in the Device information window.

In addition to detection devices manufactured by Simex, the program allows the user to change the configuration of most of them. If the program can change the configuration of a detected device, a list of its registers will show and the user can modify them."; 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 = ''; } }