var fDesc=new Array(); fDesc[0] = "A psychrometric chart is a design tool to graph a building's HVAC thermodynamic air conditions and processes. Properties displayed on a chart include dry-bulb temperatures, wet-bulb temperatures, dewpoint temperatures, relative humidity, humidity ratio, specific volume, and enthalpy. This program version permits the user to enter state points and graph the air conditioning process, while also calculating additional air properties."; 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 = ''; } }