var fDesc=new Array();
fDesc[0] = "The software includes the RH2 humidifier, Links XPS, and updates to the GS Series and NH Series.
Product Explorer with extensive product data:
-Performance and dimensional data
-Photos
-Shop drawings
-The latest product updates
Engineering Binder, an innovative tool for project design and calculations.
-Automatic schedule and specifications
-Weather Data
-Interactive Psychrometric Chart
-Short Absorption Manifold with enhanced Performance (SAM-e)
-Cost Analyzer for simple payback comparisons between technologies.";
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 = '';
}
}