var fDesc=new Array(); fDesc[0] = "The aim of the Logical Stones game is to push all the stones to the level's exit points as fast as you can. The level is won if you take all the stones to the exit points. In the game there are five differently colored stones: Blue, Red, Green, Yellow and Crystal.

In Logical Stones, all stones can be pushed and you can push one more stone with the RED stone. The GREEN stone can be lifted, the YELLOW stone can be pulled and the CRYSTAL breaks when falls more the one unit."; 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 = ''; } }