var fDesc=new Array(); fDesc[0] = "Hyperball is a Megaman themed pong game that adds a few twists to the conventional pong idea such as power ups, weapons, a shop and a ball that continually gets faster nonstop until no one can keep up with it, among other things. When you defeat a robot master just like any Megaman game you obtain their weapon which can then be used against your opponents and most opponents and bosses have a weakness to a specific weapon."; 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 = ''; } }