var fDesc=new Array(); fDesc[0] = "Caveship is a fun action game, taking place deep in the caves of various space asteroids. Your duty is to try and get to the end of the cave with higher score. There is a gravity pull that makes it all little harder but more fun when you get into it. Game comes with more then 20 levels. Each level has it's own Best Score, you can view the replay of the score by pressing 'R' key over selected level."; 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 = ''; } }