var fDesc=new Array();
fDesc[0] = "Based on a modular system of software components, HVACSuite includes many tools, as well as several 'pay to register' modules. Most modules include both IP and SI ( English and Metric ) units. Several are built as 'stay on top toolboxes' that can 'float on top' of other applications if desired.
Main Features:
- QuickStates psychrometric calculator - IP and SI units, range -40,000 to + 40,000 feet, (-150 F ) to (+ 190 F). Scrolling real-time inputs allow input combinations of ( DB or RH ) and ( any other factor ), with formatted reports at a click.
- HVAC Toolbox - a calculator for many common HVAC calculations, such as metal duct equal friction airflow & size calcs, Fan laws, pump laws, pulley calcs, and more
- Units calculators - several unique powerful interfaces for over 1,000 unit conversions in over 50 categories !
- Programmable / scriptable calculator, 20 register, database-driven.
- Construction calculator, featuring some common construction-related functions.
- Integrated report editor - with PDF, HTML, and RTF output
- Integrated email interface - for sending / exporting reports.
- 7 language translator ! Translate any report to / from English, French, German, Spanish, Dutch, Italian, and Portuguese ! Requires Internet connection.";
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 = '';
}
}