var fDesc=new Array();
fDesc[0] = "UltraKey is the best typing coach you can get because it clearly demonstrates each new skill and rapidly builds typing technique. With 8 hours use, 20 minutes a day, you will be touch-typing better than you ever thought you could.
Even though UltraKey is not a game, children love it because UltraKey engages them using voice, video, animated graphics, and a clear path of learning. Most important, the children achieve success with UltraKey. Nothing is more motivating than finding you can do something well!";
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 = '';
}
}