var fDesc=new Array();
fDesc[0] = "SEMoLa (Simple, Easy to use, MOdelling LAnguage) is a non procedural meta-language to build simulation models for continuous/event driven, deterministic/stochastic systems.
The SEMoLa framework has been developed at the Department of Agricultural and Environmental Sciences, University of Udine (Italy) and can be used to represent any system. It is particularly suit to represent biological, ecological and agricultural systems, at different scale and complexity level.
The SEMoLa language is integrated in a simulation framework that simplifies the tasks of model building, simulation and documentation; moreover it provides facilities for sensitivity analysis, calibration, validation, data management, statistical analysis, neural network building, unit verification and others.";
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 = '';
}
}