var fDesc=new Array(); fDesc[0] = "Penguin Rescue is a match 3 puzzle adventure game with a South Pole theme. You must help Teddy-Yeti stop the global warming and save penguins in the South Pole. It comes with various match-3 levels with each level having its own task to complete. You can also play special quests to help Teddy-Yeti find things from the sets scattered around the South Pole."; 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 = ''; } }