var fDesc=new Array(); fDesc[0] = "Bunnies like to deathmatch. You control a bunny, and attempt to hit the other bunnies with your feet. At the same time, they are trying to hit you! If you are hopped on, you instantly get reconstituted to try again. Dozens of crafty arenas give you plenty of room to hop."; 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 = ''; } }