var fDesc=new Array();
fDesc[0] = "Set in an undersea world with tranquil music and expansive seascapes, Bubble Mayhem offers a soothing environment in its fun and unique gameplay. Pop the bubbles and collect their treasures as fast as you can to continue to the next stage!
Main Features:
- 5 different game types
- Unlockable game modes
- Incredible power ups
- Dozens of treasure types to catch
- Infinite stages of gameplay";
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 = '';
}
}