var fDesc=new Array(); fDesc[0] = "The cat is flying on the balloon with a gun. It shoots the monsters and dragons, avoids their shots, and collects bonuses (armor, bullets, scores). You have three lives and 60 seconds of time. There are 7 levels and the last level is the fight with the monsters boss. Use right and left arrows to move, the mouse to aim and shoot."; 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 = ''; } }