var fDesc=new Array();
fDesc[0] = "Two attempts have been made to build a bomb, capable of freezing the entire world. The first was a failure, and resulted in a living blue ball. The second attempt was a success. Now the clock is ticking, and the world is in grave danger. That is, unless...
Within a Deep Forest is a freeware 2D platform game for Windows featuring challenging gameplay, beautiful music, an evil doctor, and a deep forest.";
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 = '';
}
}