var fDesc=new Array(); fDesc[0] = "Mario vs Monsters is a game in which the protagonist's name is Mario and he is the only hope to return the treasure home. Scary subterranean monsters have stolen a very rare artifact from a famous museum. It’s up to you to find it and bring it back. Defeat the monsters in this not easy, but full of excitement and adventure game."; 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 = ''; } }