var fDesc=new Array(); fDesc[0] = "In this game there are pieces of golds and stones and you need to use the hook to catch them. The hook will swing periodically and when the angle is right, you can press the mouse button and the hook will shoot out, if the hook hits a piece of gold or stone, you can take back the hook and collect the trophy. Each level has a certain target that must be met, if you cannot gain the target money within the time limit, then you lose the game."; 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 = ''; } }