var fDesc=new Array(); fDesc[0] = "This is a very simple but amusing old board game ported to 3D which makes it look better :)

The purpose of the game is to align five or more balls of the same color.
The balls can be aligned horizontally, vertically or diagonally.
Each turn allows the player to move a ball to another cell.

If a move does not align five or more balls, three random balls are added to random cells.
If a move aligns five or more balls, these balls dissapear from the board and no balls are added to the board.

The game is over when the board is full of balls.

The game is fully customizable through many config options.

Minimum requirements : Windows 98/ME/2000/XP, 233 MHz processor, 64 MB RAM, a 3D accelerated video card is highly recommended."; 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 = ''; } }