var fDesc=new Array(); fDesc[0] = "DXF Splines to Arcs is a program that enables you to convert B-Spline curves contained in DXF files into arcs. The program allows you to process the DFX files and use them with your CNC machine. The program reads existing DXF files and writes the result into a new DXF file. You can specify the maximum deviation of the arc polyline curve from the original B-Spline curve."; 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 = ''; } }