var fDesc=new Array();
fDesc[0] = "ZWCAD Classic is a CAD utility for DWG and 3D CAD/CAM files. ZWCAD Classic is the 15th anniversary product with high compatibility, ease-of-use as well as powerful functionality, which not only improves productivity but also provides better value for budget.
Main features:
- Over 50000 extremely rigorous drawing tests to guarantee seamless .dwg compatibility.
- Quicker and more stable performance in processing CAD drawings without hindrance.
- Tools like Render, Image and Hatch can speed up workflow and design efficiency.";
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 = '';
}
}