var fDesc=new Array();
fDesc[0] = "progeCAD, powered by IntelliCAD 6.x, is an AutoCAD® Industry compatible 2D/3D CAD application that natively works with AutoCAD® DWG files, from AutoCAD® 2.5 through AutoCAD.
ProgeCAD includes options such as PDF import and export, 3D modeling, XREF & DWG block library managers, AutoCAD-style command line with API extensions like VBA, AutoLISP, and C programming.
progeCAD offers more CAD functions than AutoCAD® LT or TurboCAD Pro at a fraction of the price compared to AutoCAD®, ArchiCAD or Microstation.";
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 = '';
}
}