var fDesc=new Array(); fDesc[0] = "Inspired in part by the "mascots with attitude" trend that was common following the introduction of Sonic the Hedgehog, it featured a red bat named Aero. This one works and lives in a circus. He must defend the circus from an evil ex-clown called Edgar Ektor, who used to work in the same circus and wants it shut down forever. Aero must also deal with the sidekick Zero the Kamikaze Squirrel"; 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 = ''; } }