var fDesc=new Array();
fDesc[0] = "The ConfigStage is a cost free software tool for configuration of INSEVIS-CPU, of communication interfaces and of periphery – onboard as decentral and external.
Assign up to 16 Ethernet-connections, map external CAN-slaves by their EDS-file into the S7-program blocks. Add periphery by drag´n drop, assign address areas and configure I/O-functions intuitively to the selected modules. Get sure that an internal plausibility test works in background and will warn you to prevent address conflicts. This tool is a real sample for a best practice to handle a configuration.";
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 = '';
}
}