var fDesc=new Array();
fDesc[0] = "Mc4Suite is a fully integrated, stand alone software package powered by an AutoCAD engine. Complete your design project quickly with efficient and accurate calculations and design element.
Mc4Suite is a true revolution in project design. Productivity brought to a higher level. Superior module integration and thermal data sharing generates calculations rapidly with precision and accuracy.";
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 = '';
}
}