var fDesc=new Array();
fDesc[0] = "A light and fast viewer, designed to browse, view, measure and print DWG/DXF/DWF files, supporting AutoCAD drawing format from R2.5 to 2019.
Key features:
Designed for comfortable viewing of DWG/DXF file;
Print and batch print DWG files;
DWG to Image (JPG, TIFF, GIF) and PDF conversion (Pro only);
Easy measuring length and area with smart snap;
Support advanced markup (rectangle, ellipse, cloud markup);
Able to publish markup in PDF and Image (Pro version only);
Compare two DWG files.";
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 = '';
}
}