var fDesc=new Array(); fDesc[0] = "Ultimate Smash Friends is a 2d arcade fight game, inspired by the super smash bros Nintendo series. This game has original characters and levels. The Ultimate Smash Friends is aimed at being fun, nice, and original in realization and anyone can contribute to content and code. The game currently allows up to four players to play on the same computer."; 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 = ''; } }