var fDesc=new Array();
fDesc[0] = "This free typing tutor teaches you how to touch-type. Once you can touch-type you will not need to look at the keyboard to find the letters you want to type. The program comes in three versions: Standard, Accessible and Spanish. Use the menu on the left to navigate to the version you are interested in. Take a look at a screenshot. Free download of the fully functional standard version typing tutor at the bottom of this page.
When ordinary users (pupils) login, they must select a teacher. The pupil will then get the lesson files that that teacher specified. So there should be a teacher's name for each different set of lesson files. An example of a teacher's login name is:
'Mr Smith'
If Mr Smith teaches typing to two different grades then he should create a different login for each grade, so for example, he could then create two users with teacher privileges:
'Mr Smith's Grade 8s' and
'Mr Smith's Grade 9s'
and give them different lesson files.";
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 = '';
}
}