var fDesc=new Array(); fDesc[0] = "The rules of this puzzle game are very simple. Select a ball you can see on your screen and click on the open space of the board. The ball will go to the indicated position. After each movement, three additional balls will appear in the field > Next <.
Balls of the same color should be set, in order to arrange five of them vertically, horizontally or diagonally. If we succeed in doing so, the balls will disappear and we get 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 = ''; } }