var fDesc=new Array();
fDesc[1] = "Using this software, you will have access to a lot of different typing exercises that will improve your skills. The program has got a friendly interface that will guide all users on how to complete the lessons.";
fDesc[2] = "speed. TypingMaster is a great tool when you are learning typing because it can help you to improve your typing speed by means of lessons, advices and advanced tests.";
fDesc[3] = "This software teaches us how to type without looking at the keyboard. It features three levels, beginner, medium and advanced, so we can start learning from zero or just training our fingers for a faster typing.";
fDesc[4] = "looking to improve this essential skill. Kiran’s Typing Tutor is the right program for those who want to learn to type quickly and in an efficient way, as it includes a number of lessons, tests and games, and all for free.";
fDesc[5] = "Windows is your personal typing tutor featuring 5 typing courses, tests, personalized reviews, games and much more.";
fDesc[6] = "using your own computer in a practical and fun way, typing games included!";
fDesc[7] = "(the file size stated is for the second one). The keyboard layout can be in English,German, Swiss, Russian, Czech, Slovak, etc. The company is willing to provide new layouts for other languages if we contact them. The download trial version has 15 free typing lessons.";
fDesc[8] = "without looking at the keyboard. It will show you the right position of each finger, and which finger you should move to press each letter. All that you need is watch carefully and learn the correct moves for each finger.";
fDesc[9] = ", intermediate and also for experts alike. Typing Pro helps the user learn typing in the methodical way. This tool is effective to increase users typing speed three to five times more and improves the accuracy rate. Typing Pro helps to learn typing techniques in English, Spanish or French.";
fDesc[10] = "application is pretty simple in use, contains a lot of tips for those who wants to learn typing. This application can determine what course is the best for you by suggesting you to pass a test.";
fDesc[11] = "your personal typing tutor featuring 5 typing courses, tests, personalized reviews, games and much more.";
fDesc[15] = "practices and guided courses. Type Inspector automatically adjusts practices to meet your needs. Touch typing is easy to learn.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}