var fDesc=new Array();
fDesc[0] = "With MagiCAD you can look forward to more time for productive and creative designing and less time-consuming routine work. A range of new features and functions will take you faster from start to finish. Start by checking out some of the highlights in MagiCAD for AutoCAD and Revit..
Features:
-Male-female bends supported
-Aligned integrated reductions supported
-Sound and pressure calculation for fans and pumps
-Complete air handling units (AHUs) can be calculated
-Provision for voids more clearly presented in model
-Automatic detection of already existing provision for voids
-Provision for voids included in bill of material (BOM)
-User defined dimensions for provision for voids
-Collision control doesn’t report collision if a provision for voids object has been created
-AutoCAD objects can be converted to MagiCAD objects
-Hide function works on converted AutoCAD Objects
-Actuator symbols can be placed on duct components
-Merge Project function for importing project information from another project
-‘Show selected parts area’ definition now also cuts xref drawings
-More options in the free text function";
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 = '';
}
}