var fDesc=new Array(); fDesc[0] = "HPGL and HP-GL/2 .plt files to DXF/DWG converter. All DXF/DWG versions through to AutoCAD 2009 are supported. Allows wild card file naming to be used - i.e. translate *.plt, *.hpgl, etc. Support multi-folio (multi-page) plot files. Each page is output to a separate DXF/DWG file. DXF files can be read by AutoCAD and most other CAD software, as well as a large number of other graphic applications. DWG files are AutoCAD's native drawing format, and give a smaller file size. DWG can also be read by a quite a few other CAD programs."; 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 = ''; } }