var fDesc=new Array();
fDesc[0] = "IPSEpro is a set of software modules for creating process models and for utilizing these models throughout the lifecycle of process plants.
IPSEpro's modules are used to
- Calculate heat balances and predict design and off-design performance
- Estimate costs during conceptual design
- Verify and validate measurements during acceptance tests
- Monitor and optimize plant performance on-line";
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 = '';
}
}