var fDesc=new Array();
fDesc[0] = "Super DX - Ball Deluxe
The Bonus Pack
15 boards for Super DX - Ball Deluxe
Super DX-Ball is the perfect mix of classic game play and amazing graphics that everyone in the family is sure to enjoy. This game is hand-crafted to deliver the beautiful world of tessellation and repeating patterns in a way that has never been seen in a brick-breaking game... until now!
The Bonus set is a collection of both geometric designs and lighthearted boards that are created for players looking for an amazing new challenge.";
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 = '';
}
}