var fDesc=new Array(); fDesc[0] = "ImgConvert is a .NET utility allowing to convert raster images to internal AutoCAD blocks. So you can embed attached (external) small raster images into your DWG drawings - the resulting DWG file will no more depend on external references. There is a penalty in file size - larger images may grow your DWG files substantially."; 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 = ''; } }