var fDesc=new Array(); fDesc[0] = "In this game there is a customer who orders a string of fish balls. You must then control the hawker to create the string of fish balls by catching them as they fall down from the sky. You must catch different types of fish balls in sequence so that the resultant string matches exactly as the customer required. Use the mouse to control the position of the hawker and catch the fish balls. If you can align all the fish balls to the centre of the stick, then you have created a beautiful string of fish balls and you can score higher."; 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 = ''; } }