var fDesc=new Array(); fDesc[0] = "Time Tracker teaches young children how to tell time using an analog clock. There are ten educational levels ranging from simple hour hand manipulation to complex double-digit subtraction. Upper level equations show a deactivated clock representing the "current" time in conjunction with the main active play clock representing the "configurable" time. Time Tracker uses dynamic leveling algorithm to adjust to the child's ability."; 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 = ''; } }