var fDesc=new Array();
fDesc[0] = "PCB Designer is a cost effective, easy to use electronic printed circuit board PCB layout application.
Features:
Export Gerber RS274X and Excellon NC drill.
Import ASCII netlist.
Up to 16 layer boards supported.
Rulers, Guidelines and Dimensioning lines.
Five libraries - new components and libraries can be added.
Automated ground planes, isolated copper removal.
Tracks snap to pads for easy routing.
Multiple Undo / Redo.
Import PCB Designe/Protel Autotrax/Tango PCB II files.
Add bitmaps into your design and export them to Gerber
Much more!";
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 = '';
}
}