var fDesc=new Array();
fDesc[0] = "Brickout is classic brick-breaking action, but in OpenGL with solid gameplay, improved physics, a full level editor designed to maximize your creativity in level building as well as a host of fun and innovative powerups and gameplay options. A built-in music player lets you listen to your own tunes as you play!
Full Level Editor with full color control and 350 pre-made bricks for inspiration. This is the same editor we use to create the levels in the game.";
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 = '';
}
}