var fDesc=new Array(); fDesc[0] = "Carassius Auratus is a simple fishing game. The controls are simple as possible. Any key (except m) or even the mouse button works. With that you can launch your rod and pull the fish that you catch. It might be hard at the beginning until you get the hang of it. New fish are generated as you catch them, the game ends only when the user gets tired of it and presses “ESC”."; 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 = ''; } }