var fDesc=new Array(); fDesc[0] = "VeeCAD is a program that takes a schematic generated netlist and assists you to build a layout - on strip (Veroboard), matrix, donut, tripad, Atarado Smart and other prototyping boards. It provides design tools such as netlist import, component footprint definition, component positioning, wiring and connectivity check. You can break tracks, add wire links and free form wiring."; 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 = ''; } }