var fDesc=new Array(); fDesc[0] = "Pop'em 1.1 is a game where you have to match balls with the same color to remove them.

You will have a board with ten columns and eight rows, filled with colored balls. There will be blue, red, green, cyan and yellow balls, randomly distributed.

By double-clicking on groups of two or more adjacent balls with the same color, you will make those groups disappear from the board. The balls situated over the vanishing balls will fall to occupy the free space. If an entire row is cleared, the remaining rows will join.

Pop'em has four different game modes (Traditional, Continus, Shifter and Megashifter) and 5 graphical themes (Original, Dice, Squares, X-Mas and Pacmania). The games modes differ in the way that the remaining balls move occupying the empty spaces, while the themes modify the shape of the balls.

You will earn different scores for each group. The earned point will be show each time you make a group disappear.

When there are no more possible moves, the game is over. If your score is high, you can enter your name in the High Score List."; 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 = ''; } }