var fDesc=new Array(); fDesc[0] = "Super Collapse is simply a blast! Find rows and columns of three or more like-colored blocks; click them and they disappear, collapsing the rows and columns above. Easy, right? Watch out though, more lines are stacking up at the bottom (and speeding up), and as soon as any column reaches the top, it's game over! You can choose your preferred game mode: when the blocks of colored cubes grow like stalagmites or fall down like stalactites. Super addictive and great fun for the whole family!"; 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 = ''; } }