var fDesc=new Array();
fDesc[0] = "DuctDesigner 3D® from QuickPen provides 3D CAD software for sheetmetal contractors who want to increase profitability by providing an interoperable solution that eliminates waste and improves the design-to-field process. The following viewers are available for DuctDesigner 3D®. The DuctDesigner 3D Viewer allows client computers to view DuctDesigner 3D models.
Main features:
-Direct download to Vulcan Cutting Systems
-Connect-Est with AutoBid® SheetMetal
-Data editor - one location to set up your standards, including the ability to handle AIA layers, SMACNA duct construction standards, and company standards
-Multi-user SQL database
-Automated, view-dependent annotations that are dynamically linked to their objects";
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 = '';
}
}