var fDesc=new Array(); fDesc[0] = "Jumpa is a small arcade game. You play a jumper, aiming to jump the highest possible, catching bonuses such as rockets (to fly higher), bubbles, wings (help with takeoff), gravity-star (gravity changes, you fall very-very slowly) platform-helper (chases the jumper and you cannot fall down). When you fall or thrust into the enemy, you lose the game. Controls: left arrow, right arrow and other keys."; 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 = ''; } }