var fDesc=new Array();
fDesc[0] = "PCB Artist makes it easy to create printed circuit boards for your electronic projects. It features a components library of over 500,000 parts. Creating a new PCB is easy using the wizard mode, which guides you through the selection of PCB size, number of layers (2/4/6), material thickness, finishing, CNC route points, etc. Controlled AutoRoute can greatly reduce your effort in drawing copper lines. PCB Artist can also be used to draw schematics of your circuits.
After completing your design, you can order finished PCBs from the developer. This tool can also provide an estimate of the production cost.";
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 = '';
}
}