var fDesc=new Array();
fDesc[0] = "Do you want to develop computer games without spending countless hours learning how to become a programmer? Then you've come to the right place. GameMaker allows you to make exciting computer games, without the need to write a single line of code. Making games with GameMaker is a lot of fun!
Design your very own games using easy-to-learn drag-and-drop actions – you can create professional-looking games within very little time. You can make games with backgrounds, animated graphics, music and sound effects. And when you've become more experienced, there is an easy built-in programming GameMaker Language (GML), which gives you the full flexibility of creating games with GameMaker.";
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 = '';
}
}