var fDesc=new Array(); fDesc[0] = "Super Mario Bros. X is a massive Mario fan game that blends elements from Super Mario 1, 2, 3 and World. It has many power ups, such as the Ice Flower, Hammer Suit, Tanooki Suit, Kuribo's shoe, The Billy Gun, and Yoshi. You can also play the game with a friend in the 2 player co-op mode, were the screen seamlessly splits and combines as the players separate and rejoin."; 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 = ''; } }