var fDesc=new Array();
fDesc[0] = "Aquasmart is a fully featured Hydronic HVAC system providing cooling and heating to satisfy user needs. It is especially suited to residential and light commercial applications up to 2500m².
Aquasmart integrates system components include chiller / heat pumps, fan coils factory fitted with controls supervised and managed by the SYSTEM MANAGER offering a level of building management only found in more expensive non standard systems.
Also, it provides up to 128 terminals which may be controlled in up to 32 zones.";
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 = '';
}
}