var fDesc=new Array();
fDesc[0] = "DWG TrueView supports several file formats for output and conversion.
With DWG TrueView, you can open, view, plot, and convert drawing files created with AutoCAD-based products.
Features:
-Open and view DWG and DXF files;
-Obtain geometric information from drawings such as distance, mass, and volume;
-Plot DWG files to a plotter;
-Create DWF, DWFx, PDF, JPG, and PNG files from 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 = '';
}
}