var fDesc=new Array(); fDesc[0] = "Cubed! is a game similar to Tetris with some modifications.
In this game there is much more going on than the original. There are 50 pre-designed levels with the ability to pick which level you want to play. You can also play a random game which will be designed differently every time you pick random. There are varying difficulty levels and the ability to play with both the keyboard and the mouse."; 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 = ''; } }