var fDesc=new Array();
fDesc[0] = "Brutus2D is a BASIC-style game programming language for Windows.
Brutus2D provides all the familiar BASIC commands like “For-Next”, “If-Then”, and etc.
Additionally, simple commands manipulate graphics, sounds, and inputs. It is targeted towards the hobbyist who enjoys programming a game now and then.
Brutus2D can create fast and small stand-alone executables.";
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 = '';
}
}