var fDesc=new Array(); fDesc[0] = "Super Luigi and the Golden Shrooms is an entertaiment game where you have to collect golden mushrooms in this great platformer with many different areas.
There are many golden Shrooms scattered all over the Mushroom Kingdom. When they are all collected they function as a key. This key will allow you to enter an ancien vault, full of riches. The problem is that these mushrooms are scattered everywhere. Collecting them will take a long while. Of course Luigi is not doing anything right now, so Luigi heads off to collect these mushrooms and become rich."; 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 = ''; } }