var fDesc=new Array(); fDesc[0] = "Find differences between two revisions of an AutoCAD drawing.
Display the differences in AutoCAD, using contrasting colors for Added entities, Deleted entities.

Choose your own markup colours, a legend can be created automatically.
Save the differences to separate files.
Synchronism zoom the result drawings.
Synchronism location the selected entity when you click the result report list.
Detail report the different entities.

Select the specially entities to compare.
Save compare result and quick view them again.
When compare drawings you can select whether compare layers, text height, z-axis, color and linetype."; 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 = ''; } }