var fDesc=new Array();
fDesc[0] = "Turbulenz Engine is a set of libraries that are implemented in optimized JavaScript supporting rapid iteration of game code and data. The engine executes directly in the browser.
Main Features:
- Core: Asynchronous resource loading and swapping; Lazy evaluation of scene updates; Multi-threaded evaluation and execution.
- Rendering effects and particles: Shader based immediate mode dispatch; Supporting multi-technique, multi-pass, multi-materials.
- Physics, collision and animation.
- Audio and input";
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 = '';
}
}