var fDesc=new Array(); fDesc[0] = "Get Psyched!TM will allow you to do psychrometric calculations in MS Excel. The software is based on ASHRAE correlations and is more than accurate enough for HVAC applications. It works with both English (IP) and Metric (SI) units. You can calculate these properties in any Excel spreadsheet:

- Enthalpy (h)
- Dewpoint Temperature (dp)
- Relative Humidity (%)
- Humidity Ratio (W)
- Specific Volume (v)
- Wet Bulb Temperature (wb)"; 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 = ''; } }