var fDesc=new Array();
fDesc[0] = "There was a dreamy little boy called Milo. He used to watch the stars each evening before his mother tucked him in for sleep.
After a while, Milo developed a special sense for stars. All he needed was one short glimpse into the night sky and he would tell you the exact number of stars shining that evening. If you want to become as good star observer as Milo is, than you should play the Star Counter Milo free kids game. It will teach you how to memorize large numbers of stars within couple of seconds.
This incredible game is a perfect way to train your short term memory and develop remarkable mental capacities while having fun.";
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 = '';
}
}