var fDesc=new Array();
fDesc[0] = "Are you brave enough to help the dragons make their journey home? If so, adventure awaits you in Bubble Match! Plunge into a bubble blasting adventure with three amazing games with a total of over 200 different levels! There are extraordinary power-ups and amazing bonuses to discover within every puzzle! Enjoy endless hours of bubble blasting action!
Game Features
* 3 captivating games full of action and adventure!
* Over 200 exciting levels!
* Extraordinary power-ups!
* Amazing bonuses!
* Virtually endless puzzles!
System Requirements
* Windows 98/ME/2000/XP/Vista
* 233 MHz
* 32 MB RAM";
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 = '';
}
}