var fDesc=new Array(); fDesc[0] = "Megaman Project X of this adventure game is to complete the dangerous levels as fast as you can. You can chose to play as Megaman or Zero or Dash. You have to fight with various enemies along the way to achieve your goal. Use the arrow keys to move left and right. Press the the up arrow key to jump. Press the space bar shoot. Press the end key to dash. Play as Megaman, Zero or Bass and make your way through the adventurous action packed levels perishing the enemies..."; 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 = ''; } }