var fDesc=new Array(); fDesc[0] = "Ollie is a little worm that embarks on an adventure through a dangerous jungle in search for love and fortune. To reach its objective, this little worm has to overcome different levels, jumping on platforms, collecting coins, fruits and other objects, while managing to survive in a hostile environment, with the threat brought in by evil creatures like spiders and snails."; 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 = ''; } }