var fDesc=new Array(); fDesc[0] = "In this game you will first need to hear a set of drum beats played by the computer, after that you should play the exact same beats alongside the computer, the more accurate your play is, the higher the score you gain. As the game progresses, there will be more and more drum beats and the game will be harder and harder."; 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 = ''; } }