var fDesc=new Array(); fDesc[0] = "Duck Marines is a remake of ChuChu Rocket game. The goal of this game is to get as many ducks into the submarine of your color. Gray ducks give you one point, gold ducks give multiple points and pink ducks will trigger an event or mini game. You can guide the ducks towards your submarine by placing arrows on the ground. However, you must keep a look out for the blue predator; predators love to eat ducks and will kill a large number of your ducks if they reach your submarine."; 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 = ''; } }