var fDesc=new Array(); fDesc[0] = "Your objective in this little Mario game is to launch the Mario puppets at the same colored puppets and connect four in a row to score points. Use YOUR MOUSE to click the Mario puppets at the bottom as they move by to launch them upwards. Turtles remove a puppets column. Have fun!"; 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 = ''; } }