var fDesc=new Array(); fDesc[0] = "CONNECT I/O is a visual programming tool in which a diagram is drawn with nodes and links. It can be used as a SoftPLC or as an I/O interface with external technologies. Works out of the box with FACTORY I/O or HOME I/O, with no configuration needed."; 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 = ''; } }