var fDesc=new Array();
fDesc[0] = "The mini-REFPROP program is a sample version of the full REFPROP program and is meant for use as a teaching tool in the introduction of thermodynamics to students. It contains a limited number of pure fluids (water, CO2, R134a, nitrogen, methane, propane, hydrogen, and dodecane) and also allows mixture calculations of nitrogen with methane for teaching vapor-liquid equilibrium (VLE).";
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 = '';
}
}