var fDesc=new Array(); fDesc[0] = "EAGLE is a PCB design software with a schematic editor. It lets you draw the circuit schematic and shift to PCB design easily;
real-time design synchronization between both makes it easy to incorporate changes. With its
Routing Engine, you can draw complex board layouts quickly."; 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 = ''; } }