var fDesc=new Array(); fDesc[0] = "This is a single screen "'machine" that allows the child to add and subtract visually. The program can be used without a mouse, but with some basic mouse skills the child can pick the numbers themselves and learn the basic mathematics so he can develop math skills from an early age."; 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 = ''; } }