var fDesc=new Array();
fDesc[0] = "This plugin can be used to "facet" 2D and 3D curves in AutoCAD: to approximate their curvature with a number of straight line segments.
The faceted output is in the form of a number of lines or a single polyline, as selected by the user.
Once loaded, the FACETCURVE command can be used to configure the application settings and to run the faceting operation on a particular curve.";
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 = '';
}
}