var fDesc=new Array(); fDesc[0] = "Help the ninja turtles defeat shredder and the foot clan to rescue their friend April. Use many powerful moves to finish the enemy pests, catch items to throw them, collects items and points. Use arrows keys to move and space bar to jump. Your primary objective is to defeat all the enemies to jump to the next level."; 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 = ''; } }