var fDesc=new Array(); fDesc[0] = "Bottle Buster is a fun game where you will play a shooting game as in a Carnival. The main goal of this game is to shoot a ball to knock all the bottles to the ground. You will play a game as in a Carnival to win a teddy bear. This game indicates the number of bottles remaining and number of balls that you have thrown"; 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 = ''; } }