var fDesc=new Array(); fDesc[0] = "Aquabob is a 2-D side-scrolling indie game. It features adventures taking place on the territory of the Pacific Ocean, inhabited by hundreds of different and dangerous sea creatures. Kill living things, gather resources, create armor and weapons and advance your character’s rank. Oxygen tends to finish all the time – diver’s air tanks have limited capacity, so that you have to tense up and replenish the stock of air. The author was inspired with such games as Terraria and Epic Inventor."; 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 = ''; } }