var fDesc=new Array();
fDesc[0] = "Touch-Typing is a typing tutor SHAREWARE windows utility which teaches you touch typing in an easy, effective and amusing way.
Touch-Typing is a MUST HAVE tool for anyone who wishes to learn how to type quickly and effectively or just trying to improve his/her typing skills.
Touch-Typing saves a HUGE amount of hours trying to learn touch typing.
Touch-Typing enables you to advance step by step according to your own personal pace, you are also offered a variety of exercises of different ategories and also the opportunity of creating your own practices.";
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 = '';
}
}