var fDesc=new Array(); fDesc[0] = "Athletes is a simple educational application designed for familiarizing young children with the different categories of sports. The animated and nice colored images keep their attention, so that they will accumulate the new information without effort. They will learn more about baseball, basketball, tennis, swimming, skying, golf, chess, football, and many other sports."; 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 = ''; } }