var fDesc=new Array();
fDesc[0] = "In Scrap Garden - The Day Before, you control a little rusty robot Canny who unwittingly finds himself in the midst of momentous events in Robo Land. You must run and jump a lot, solve puzzles, and fight against enemies who are much bigger and stronger than you are.
The Day Before is a sequel to the Scrap Garden game. Here, you take part in the significant events unfolding the day before the main 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 = '';
}
}