var fDesc=new Array(); fDesc[0] = "Magic Ocean is a hidden object game which takes you to the bottom of the ocean. Your aim is to remove all the trash from the ocean by finding the hidden items, solving various puzzles, etc. This game has picturesque background locations and nice music."; 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 = ''; } }