var fDesc=new Array();
fDesc[0] = "Using Simile makes modelling a more productive task for scientific investigators. Models can be prepared more quickly, shared more easily and maintained more efficiently.
Simile has a System Dynamics heart, like many other visual modelling and simulation software tools. However, with Simile, you also benefit from the following features:
- Object-based representation, for handling disaggregation and individual-based modelling
- Auto-generated C model code, for fast execution
- Plug-in displays, allowing you to create graphics specific to your field";
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 = '';
}
}