var fDesc=new Array(); fDesc[0] = "Gerry the gerbil loves playing in his ball - he would play all day long if he could. Unfortunately though, the house in which Gerry lives is not safe - if he is not careful, he will fall and hurt himself.
This is where you come in. You must guide Gerry around the 60 levels contained within the house, making sure he does not fall off the edge of any of them. Your job is made harder by the numerous obstacles left lying about - if Gerry touches these, he will be pushed away - and possibly off an edge."; 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 = ''; } }