var fDesc=new Array();
fDesc[0] = "PixelLight is a cross-platform application framework for any kind of 3D applications like games, interactive simulations or visualizations. It's written in C and has been designed with flexibility and extensibility as one of it's main goals.
Main Features:
- Modular design with flexibility and extensibility as one of it's main goals
- Powerful dynamic type, reflection system and plugin architecture
- Wide range of supported file formats
- Highly modular scene system
- Autodesk 3ds Max exporter
- Cross-platform";
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 = '';
}
}