var fDesc=new Array(); fDesc[0] = "An unusual variation of Tetris.
You no longer need to arrange cubes
rows for their elimination.
In this game you need to
monitor the flow of water in different colors.
Choose the color cube and weave
it in the appropriate thread!
Water can be in three colors;
red, green, blue. However everything changes
when the flows are mixed together!
Be careful, because when you connect
two different colors, a new color is created!
Be sure to collect bonuses that give you the upper hand
over the rapidly flowing figures."; 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 = ''; } }