var fDesc=new Array(); fDesc[0] = "You are a boy with super powers that allow you to transform into fantastic creatures. This time some bad guys are running away with a hostage in a boat. You need to persecute the bad guys and free the hostage.

To do so, you first transform into a sea creature and swim under water. At this stage you must avoid all creatures and objects, but powerups. If you survive this stage, you transform into an insect. As an insect you must fly above the boat, shoot the bad guys with green balls and avoid the granades they throw to you."; 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 = ''; } }