var fDesc=new Array(); fDesc[0] = "Just like Jack Black in Nacho Libre, you can fight to be the top wrestler in The Ultimate Wrestling Battle. Wrestle ten fighters in the ring to earn credits and build your skills. The more you win, the more credits you earn, and the more you can upgrade your attack and defense power. Use your wrestling moves to beat all ten fighters and you can max out your skills to be the toughest fighter in the ring. The top ten fighters can face off against other players to see who is in fact the ultimate wrestler."; 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 = ''; } }