var fDesc=new Array(); fDesc[0] = "The application has an extensive Help system in English and German. Additional details concerning the bus controllers can be found in the corresponding user's manuals.
The toolbox is connected with the bus controller over an Ethernet network. The PC on which the ModbusTCP toolbox is running must have network access (e.g. Intranet) to the controller that should be managed (or to several controllers at the same time). The most simple constellation is a direct connection between the PC and the bus controller using a patch cable. The default subnet mask for the controller is 255.255.255.0 (Class C network), so the first 3 octets of the IP address (Net ID) for the PC must match the address of the bus controller."; 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 = ''; } }