var fDesc=new Array(); fDesc[0] = "The Constructor Viewer is a free Windows program that allows you to view PCF files exported from the Constructor 12. This allows users to fully view and print Constructor 12 ladder diagrams as well simulate the circuits using the same simulation engine that is in the Constructor. Simulation is great for testing and troubleshooting a circuit to see how it will function before it is hard wired. Users can also add text and draw objects to existing files, perfect for highlighting parts of a diagram or adding notes."; 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 = ''; } }