var fDesc=new Array(); fDesc[0] = "This applet is for all those lovely kids around the world. It is for tiny nursery tots and help them in learning the alphabets and numbers the fun way. You might need to scroll down to view the applet fully. Choose your option and hit the start button. In the screen that appears, just fill in the blanks with appropriate letter or number and press enter. If you type in the correct alphabet or number, you will see it appear in the blank highlighted space, and get a "WOW" else you will get a "UHOH"."; 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 = ''; } }