var fDesc=new Array();
fDesc[0] = "Simulator CRP-05 ® is a software simulator of measures and calculations performed by real computer CRP-05 manufactured by Hydro-Eco-Invest.
Simulations use the same procedures and the same precision which are implemented in the real device. CRP-05 calculates the mass and energy flow as well as the actual thermodynamic parameters and uncertainty of measurements for the actual operating point.";
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 = '';
}
}