var fDesc=new Array();
fDesc[0] = "Add the ultimate flexibility and power into your applications.
Features:
- It allows modification of the application behaviour without needing to update the full application. Just sending a new small script file is sufficient.
- End users can add totally new functionality to an application by binding application logic with COM servers through scripting.
- Different end user specific rules can be put in scripts allowing to maintain a single application for different uses";
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 = '';
}
}