var fDesc=new Array(); fDesc[0] = "This is the classic Rubik's Cube game. In this game there is a cube composed of 27 blocks (9 blocks on each face), you need to rotate the rows of blocks until the colours of the blocks in each of the faces are the same. A tips will be provided to tell you how to play this game."; 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 = ''; } }