var fDesc=new Array();
fDesc[0] = "ROL Assistant is a free software with useful calculation tools.
Main features:
- Unit Conversion: Length, Area, Volume, Mass, Density, Pressure, Energy, Power, Temperature, Flowrate, Viscosity, Specific Energy, Heat Flux, Heat Transfer Coefficient, Thermal Conductivity...
- Steam Properties: Enthalpy, Density, Heat Capacity, Viscosity, Thermal Conductivity of saturated steam, water, and superheated steam.
- Line Pressure Drop: Single phase line pressure drop calculation for different pipe sizes and materials in English or Metric units.
- Scientific Calculator:Easy to use scientific calculator with a timer feature.";
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 = '';
}
}