var fDesc=new Array(); fDesc[0] = "Explore a wondrous underwater world of treasures in this gorgeous 3D brick-breaking adventure. Voyage through scenic deep-sea landscapes inhabited by a spectacular array of fish in your search for priceless jewels!
This game takes place at the bottom of the sea. The game field is delimited by stones, and there are fishes passing by in the background. The view is not a top view like in Arkanoid or Ricochet, it´s more like a first person view."; 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 = ''; } }