var fDesc=new Array(); fDesc[0] = "This is a twist on the traditional "falling tetronimos" game. It starts out simple, but every level gives you a different perspective. The game supports a "soft" drop (if drop is followed by either left or right, then the piece will attempt to slide left or right as soon as it hits bottom). Falling Up will have you giggling with evil glee. It is wrote as a precursor to other games, a way to learn new technologies (GLUT, OpenGL, OpenAL, NSIS,), and to brush up on old ones (c, for that matter)."; 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 = ''; } }