var fDesc=new Array(); fDesc[0] = "LightFish is an arcade game in which the user controls a small fish who lives in the abyssal deeps of the ocean, surrounded by deadly creatures. His objective is to destroy all the monsters who inhabit those dangerous zones by drawing lines onto unexplored territory. However, any enemy who manages to touch the Lightfish will kill him instantly."; 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 = ''; } }