var fDesc=new Array(); fDesc[0] = "Can you help Scooby? Scooby Doo and Shaggy are stranded and have to catch the coconuts to survive. Watch for coconut... (More) shadows to spot where the coconuts are falling and use the mouse to catch them. Use arrows keys to move and space bar to jump."; 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 = ''; } }