var fDesc=new Array(); fDesc[0] = "In this game you should move Ghost Man to eat all the foods in the maze, there will be a ghost chasing you and you should get away from them. There are also special power foods scattered throughout the maze and after you've eaten such foods, you will become invincible for a while and be able to eat the ghosts as well. The number of ghosts chasing you will increase as the game progresses."; 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 = ''; } }