var fDesc=new Array(); fDesc[0] = "Ezicompare is a simple to use utility program that allows you to: open up two related DXF or DWG files and display them side by side and synchronize there display. Run a compare option that greys out common entities, displays changed entities as well as deleted and inserted entities.
Ezicompare creates a list of deleted,changed and inserted entities so that you can pan directly to the differences. Save the difference display as a dxf or dwg which can be opened in Acad for editing and printing."; 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 = ''; } }