var fDesc=new Array();
fDesc[0] = "Modicon Simulator™ allows users to program, run, and test Modicon™ ladder logic and simulated I/O without using a PLC.
Testing and debugging Modicon programs without such a tool would typically take days.
With the simulator, these tests can be accomplished in minutes—without the need for expensive hardware.
When a program is online with Modicon Simulator, the simulator responds in a similar manner to the type of PLC that is being simulated.
Programs may be loaded, saved, edited, and executed while online with the simulator.";
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 = '';
}
}