var fDesc=new Array(); fDesc[0] = "You have to build rows of minimum 3 blocks of the same colour (horizontal, diagonal, vertical) which are then to be removed. Removing more than 5 blocks at one drop you receive some bonuses. In contrast to the Tetcolor you can not rotate figure, but you can rotate colors of figure's blocks.


The score grows incredibly when you remove more blocks at the time. For example for 5 blocks removed you get 10 times more score than for 3! We suggest the following strategy: build the combinations where more blocks removed at one drop.

The game stops when the field is filled and there is no room for the new figure to appear."; 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 = ''; } }