var fDesc=new Array(); fDesc[0] = "Bubble Frenzy is a puzzle game that will test your intellect rather than your reflexes. Your goal is to clear the bubble-filled play area by launching other bubbles at them. If you connect three or more bubbles of the same color, they will drop out of the play screen. If that leaves any bubbles not connected to the top of the playfield, they will also fall."; 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 = ''; } }