var fDesc=new Array(); fDesc[0] = "CyberStart is intended to make the child's very first experience with the computer a pleasant one. The exercises are designed for the toddler as young as 18 months. He works them just by moving the mouse. He does not use the keyboard or mouse buttons. CyberStart should help him become comfortable with the computer and also allow him to explore some fundamental concepts.

The program allows the kids to extend early welcome to info-tech, explores size, shape, color, order, and much more."; 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 = ''; } }