var fDesc=new Array(); fDesc[0] = "Mulimedia Logic is a logic emulator of the finest caliber. It will allow the user to explore the inner workings of computers and digital logic without having to worry about shorting out power supplies, tangling hookup wires, troubleshooting loose connections, accumulating parts, or any of the other drawbacks associated with breadboarding electronic circuits.

This program is quite complete in that it includes a comprehensive set of elementary to advanced functions: Inverters, And gates, Or gates, Xor gates, ALU's (Arithmetic Logic Units), Flip Flops, Multiplexers, Demultiplexers, RAM (Random Access Memory), etc. It has simulated LED's (Light Emitting Diodes) in various flavors, switches in many forms, plus the ability to play sounds and display pictures."; 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 = ''; } }