var fDesc=new Array(); fDesc[0] = "The game balances basic concepts found in both platformers and arcade shooters. The player is able to jump and shoot projectiles from a sword. He must ride a flying dragon and confront a large boss throughout the second half of each round. The player's life bar steadily diminishes as time passes. Health is gained through collection of fruit and projectile weapons. Some fruits, when shot, will expand and burst into multiple items."; 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 = ''; } }