var fDesc=new Array(); fDesc[0] = "The Distance Marker program works with AutoCAD to quickly create distance notations in your drawing. Pick any point or object (with or without object snaps) as a base point, then select (by Pick or Polyline) single or multiple objects to measure the distance to.

Features:
-Inserts Text (with optional lines from basepoint to point) or Dimensions to denote distance between user defined points.
-2 steps to create single or multiple measurements in your AutoCAD drawing:
- Select a base point (block, circle, arc, point or text) to measure from.
- Select objects to measure to (blocks, circles, arcs, points or text).
Measurement options include linear, vector, and delta X, Y or Z.
-Actual measurements displayed may be modified (example: divide feet by 3 to display yards).
-Other user configurable options include text properties, dimension style, layers, decimals, suffix, angle to base point, and minimum/maximum distances to display.
-Objects to measure to may be selected, with filters, by pick or by polyline."; 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 = ''; } }