var fDesc=new Array(); fDesc[0] = "Apocalyptic mutants are approaching, and the salvation of the world depends on one brave little mouse. You must help Mitch fight off the terrible threat looming over the world - insidious monsters rising from the Earth. You must drive through forests, over mountains, and into secret military bases as you fight off evil mutants. You destroy these evil creatures by using whatever you can find: swords, lasers, bombs, magic wands, and even fire extinguishers."; 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 = ''; } }