var fDesc=new Array(); fDesc[0] = "Use the arrow keys to move him left and right and the space bar to help him catch all the yummy food such as bananas, roast chicken, cracker, fries chips, hamburgers, potato chips, ice cream and so on. Don’t let any fall to the ground or you dropped food meter fills up and the game is over. But watch out for bombs and dynamite! They give a mean bit of indigestion. But eat an antacid table and the next explosive becomes a bonus treat and lower your food meter. Go ahead and try to gain a high score! 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 = ''; } }