var fDesc=new Array(); fDesc[0] = "Batman's Outfit: Use the drop down box to select how you want Batman to look. You can select Class Batman, 90s Batman (from the Michael Keaton movies), or Batman Begins (altho I'm yet to find a clear picture of the new Batman, so it's a close-enuff thing). You can also select Random which means you'll get a different one each time it runs."; 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 = ''; } }