var fDesc=new Array();
fDesc[0] = "WinDali is a modeling and simulation system for Microsoft Windows™ 95, 98, NT 4.0 or later.
Main features:
- Solves a system of semi-explicit differential algebraic equations (DAE’s)
- Solves initial value problems.
- Handles discontinuities and state shifts.
- Models are formulated by writing equations instead of graphically building the equations.";
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 = '';
}
}