var fDesc=new Array();
fDesc[0] = "PRO CNC Draw combine CAD and CAM steps. It is a software to draw and generate G code for 2,5D objects. This is the most common task to any mill machine.
All CNC (Computerised Numerical Control) machines work with G code. From idea to object, processing chain usually follows three steps : design using CAD (Computer Aided Design) software, this is the step where you draw the object. Second step is generation of G code which is done by CAM software (Computer Aided Manufacturing). And at last a CNC driver (Computerised Numerical Control) to drive the machine (mill or lathe) that will produce the final shape.";
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 = '';
}
}