var fDesc=new Array(); fDesc[0] = "Funny Chewer is a sort of Pacman game in which you must eat all dots in order to get to the next level. Like in Pacman, there are different enemies that you must avoid or kill if you don't want to lose a life. These enemies look different and have all special qualities that make them unique. There is also a great number of bonuses and power-ups that you can collect in order to help you win the levels faster and more easily."; 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 = ''; } }