var fDesc=new Array(); fDesc[0] = "The puzzle consists of three different colored rows to three squares each. Three blue tiles are on the three red squares, three red tiles are on the three blue squares, two white tiles are in two white squares, one white square is empty. Move one tile to the empty square, if it is next to it. The shape of the tiles show you, how to move them. Some can only be moved diagonally, others only straightly.
The point of the puzzle is to bring all tiles to squares of their color. This means, the red tiles must be on the red squares at end. More than 200 different startup variations supply your brain for a long time."; 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 = ''; } }