var fDesc=new Array(); fDesc[0] = "The purpose of this software is preparation and fabrication of printed circuit boards (PCB) on Colinbus milling machines. Using data generated by the PCB Module, the machine is able to perform following tasks:
- Mill along the contours of tracks, pads (footprints) and other conductive elements on a PCB layer in order to insulate connections from surrounding copper on the copper clad sheet of laminate.
- Optionally remove copper in those areas on the PCB where there are no connections
- Drill holes.
- Cut out the exact external outline of a PCB from the laminate as well as internal cutouts."; 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 = ''; } }