var fDesc=new Array(); fDesc[0] = "Lexa Game Balls is a new puzzle game. The aim of the game is to score as many points as possible by exchanging two neighboring balls to assemble a straight line. The line must be horizontal or vertical, not diagonal, and must contain at least three balls of the same color. After a line of three or more of the same color balls is assembled, the line vanishes, and for this you get points. The empty spaces are filled by with balls falling from above. Lines with more than three balls earn higher scores. Each additional ball greatly increases the line's score. So go for long lines whenever possible!"; 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 = ''; } }