var fDesc=new Array(); fDesc[0] = "The nice and fluffy little creatures invaded every little place in the green nature. There is no single place left to go and enjoy the quiet. Kill the wabbits! Aim and shoot the cannon by using your mouse cursor. If you click close the the cannon your shot will not go far. If you click far away from the cannon your shot will be far away."; 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 = ''; } }