var fDesc=new Array();
fDesc[0] = "Dynamic Plant Modelling and Simulation
Main Features:
- Windows and Mac version.
- Easy to use.
- Compilation free modelling.
- Model editor with syntax highlighting, real-time model analysis and unit checking.
- Supports dynamic models with algebraic and/or differential equations.
- Built-in plant model library (including simulation examples for all models).
- Unit support throughout the entire modelling/simulation process.
- Dynamic model simulation.";
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 = '';
}
}