var fDesc=new Array();
fDesc[0] = "Digital Spaces is an open source multi-media presentation and simulation engine. It is highly flexible allowing the designer to choose what capabilities they want and how to use them.
It supports a range of media types, with a focus on immersive 3 dimensional "spaces".
Main features:
-OGRE 3D
-Open Dynamics Engine (ODE)
-CEGUI";
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 = '';
}
}