var fDesc=new Array(); fDesc[0] = "Bubble Zoo 2 is a marble-popping game, combining puzzle and arcade elements. You must match the moving bubbles in groups to clear the path before they reach the end and unlock new levels. As you progress, you’ll encounter a variety of challenges. These include fast-paced gameplay, levels that require careful logic and others that require specific strategies like making different combos or obtaining a minimum point total."; 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 = ''; } }