var fDesc=new Array();
fDesc[0] = "Treasure Pack for Super DX-Ball. The Treasure Pack - 10 boards.
This game brings together the amazing world of tessellation and repeating patterns with the classic game play of DX-Ball. Super DX-Ball delivers a vibrant and colorful brick-breaking game that the whole family can enjoy.
Let's see if you can find the hidden message that's locked inside this collection of boards! The Treasure Pack is a fun collection of 'free' boards for owners of Super DX-Ball Deluxe. And even if you can't find it, there's plenty of vivid and exciting levels to enjoy. Have fun!";
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 = '';
}
}