var fDesc=new Array(); fDesc[0] = "jBubblet is an exciting puzzle game where you earn points by bursting groups of bubbles off the board.
This simple game is quite addicting ! The goal of this game is to group bubbles together, on order to destroy them, and gain some points. The more you can group bubbles together, and the more you get some points : if you group n bubbles, you'll get n*(n-1) points."; 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 = ''; } }