var fDesc=new Array(); fDesc[0] = "Bart Simpson is the only one who knows of the aliens' secret plan and he has to stop them from collecting the items they need to build their "ultimate weapon" to take over the world. In each level, Bart must collect a certain number of a specific item (e.g., purple objects, hats, balloons, exit signs, nuclear rods), before he meets up with a boss at the end of the 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 = ''; } }