var fDesc=new Array(); fDesc[0] = "Cave Frenzy! is a nice game to play which resembles the good old Mario. You can run through the caverns and pick up as much gold as you can. Just be careful about the dangers inside - plenty of pits, obstacles, and crumbling walls. The idea of the game is simple - jump across the obstacles and escape the dangers, just like in Mario. But only the mouse buttons are required for control."; 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 = ''; } }