var fDesc=new Array();
fDesc[0] = "Disasteroids 3D was a personal research project to learn how to write simple games using Visual C and OpenGL. Programming started on February 16,2000 and the game rapidly took shape. The game was playable in less than a week, and since that time they added a lot of cool effects to make the game more polished.
Main features:
- OpenGL 3D graphics
- DirectSound support
- DirectInput support for joysticks and force-feedback devices";
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 = '';
}
}