var fDesc=new Array(); fDesc[0] = "Snood Towers is a puzzle game from the author of Snood that will test your intellect rather than your reflexes. Your goal is to free all of the trapped Snoods. If you click on a group of three or more Snoods, they will transport away. Be careful where you click, though! If you leave the board with no legal moves, Numbskull will take over and you will lose the game."; 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 = ''; } }