var fDesc=new Array();
fDesc[0] = "Fight your way through 25 dungeons of evil creatures by arranging letters to create magic words.
Dungeon Scroll fuses the challenge of a word game with the excitement of treasure seeking in the murky depths. After blasting rats, skeletons and even a dragon or two share your exploits with the global score system.
Snazzy sound, sweet action, and rock solid gameplay make this game an addiction that will actually make you smarter!";
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 = '';
}
}