var fDesc=new Array(); fDesc[0] = "Logicator provides a graphical environment for designing, testing, editing and downloading control algorithms in the form of a stylised flowchart. A flowchart can be run as a program to control electrical circuits, robots and model systems via an interface, or simulated on-screen systems.
The range of Logicator commands supports a range of control functions to provide function to output devices, such as motors and lamps."; 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 = ''; } }