var fDesc=new Array(); fDesc[0] = "Falling Block Game is an open source Tetris game. The object of this game is to move and rotate pieces in order to fill in complete rows. The more rows you clear at once, the more points you score. Falling Block Game includes high-resolution graphics, background music, retro sound effects, customizable controls, joystick support, high scores lists, and two gameplay modes."; 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 = ''; } }