var fDesc=new Array();
fDesc[0] = "The HBX System Designer is a complimentary download available for contractors, agents and wholesalers to aid in the development of HVAC installations. The free software enables the user to designate a particular job requirement, and in turn provides an analysis of what components are necessary to achieve the desired results. The HBX Designer is applicable for Staging, Mixing, DHW, Dual System, Geothermal, and Solar Controls, as well as providing feedback on jobs requiring remote management.
Features:
-Inclusive system design
-Functions for all HBX applications
-Detailed product information
-Component descriptions/images
-Print, overview and Quikload functions";
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 = '';
}
}