var fDesc=new Array();
fDesc[0] = "Steam Properties is an MS Windows application that calculates properties of steam/water within a wide range of pressure and temperature. The pressure range is 0.01 bar to 1000 bar and the temperature range is 0 C to 800 C. It is based on a set of equations accepted by the members of the Sixth International Conference on the Properties of Steam. The sets of equations are also known as "IFC Formulation for Industrial Use".";
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 = '';
}
}