var fDesc=new Array();
fDesc[0] = "Temple of Bricks
Game Description:
Make your way through level after level of lost ruins smashing bricks, catching jewels, avoiding the hidden dangers and more! Explore ancient brick-busting fun in Temple of Bricks. Featuring awesome explosive power-ups, unique brick types, and a stirring backdrop, get lost in fast family fun today.
Game Features:
* Original Brick Types;
* Beautiful Full Screen Display;
* Tons of Challenging Levels;
* Unlimited Play;
* Stunning Graphics and Sounds.";
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 = '';
}
}