var fDesc=new Array(); fDesc[0] = "In this game you need to connect each mole with its food by tunnels. Each mole and its food will be marked with a color, you need to connect the moles to the food with tunnels and the tunnels must not cross each other. To create a tunnel, press at the mole and drag to the food. If you want to start over, you can click the reset button. After you've finished a puzzle, you will then be given another puzzle which is larger and has more mole / food pairs. The game has 10 levels and the levels will be harder and harder."; 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 = ''; } }