var fDesc=new Array(); fDesc[0] = "Digital Simulator has a toolbar of digital circuit elements, including logic gates, flip-flops, switches, and indicators. Drawing a circuit with Digital Simulator is like using a paint program.

You click the element's icon on the toolbar, then click where you want the element to go. You use a similar procedure to draw wires and indicate connections. It's that simple.

Features:
- Emulation of a wide range of devices
- Logic Analyzer
- Hypertext On-Line Help
- Design size limited only by memory and disk space"; 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 = ''; } }