var fDesc=new Array(); fDesc[0] = "It’s a videogame. More specifically, Frogatto is an open-source “platformer” or “jump-and-run” game, which means you’re given a “cross-section” view into the world, and you help a small green fellow named Frogatto walk and jump between solid footholds without getting hurt. There’s a long history to the genre, so just by being in it we inevitably have a lot in common with other games, however, we’re not trying to clone any specific game."; 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 = ''; } }