var fDesc=new Array(); fDesc[0] = "Fish School is a game of matching different colors of fish into schools by pushing them around. You start with 2 colors of fish, and new colors are added at each new level of difficulty. A training mode is included for beginners to learn the game. The game will store all your high scores automatically, and let you move to any level you have already faced."; 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 = ''; } }