var fDesc=new Array(); fDesc[0] = "The purpose of this project is to migrate the gameplay and feeling of the classic arcade game "Arkanoid" into three dimensions, using OpenGL. I wanted to be as respectful as possibleto the original, so all sound recording, animation and graphic design has been implemented as closely as possible to the original. All levels were designed in a way that the concept of the equivalent original levels of Arkanoid remains more or less the same."; 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 = ''; } }