var fDesc=new Array(); fDesc[0] = "Create a safe passage for a little red ball, using blocks, wedges, bridges...and, of course, your sharp wits. Get the ball into the hole safely by building a path for it. To use a building block, click on it; then click on the place you want to put it. To rotate a piece, click on it until it's facing the direction you want. To remove a piece you've placed, click on the eraser and then on the piece. When you're done building the path, click Start; this releases the ball. The faster and more efficient you are, the more points you score. Have fun and good luck!"; 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 = ''; } }