var fDesc=new Array(); fDesc[0] = "C-Dogs SDL is an open source, classic overhead run-and-gun game. You play a small character through the maze to reach the end. Along the way, your enemies try to attack your; you need to shoot them down with your gun. This game can be played in single- or multiplayer-mode with a maximum of 4 players."; 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 = ''; } }