var fDesc=new Array();
fDesc[0] = "ProLon Focus is a powerful management and configuration tool which allows users to access and control their zoning system. Every controlled element in the HVAC system can be configured and optimized while being constantly monitored for maximum performance and energy savings.
At a glance: zone status, HVAC equipment operation, occupants' comfort; simply everything for easy and efficient management.";
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 = '';
}
}