var fDesc=new Array();
fDesc[0] = "N-Type is a typing tutor with a difference, designed to target the flaws in typing software available today. For a tutor program to be effective the user must return to it on a regular basis, but unfortunately most tutor programs are boring and tedious and so this is rarely the case. N-Type addresses these problems with two main features:
-The text you type is interesting and never the same, because N-Type downloads news stories for you to type
-N-Type will track your progress with many variables and give specific feedback on areas where improvement is needed - thus you will have a quantifiable indicator for your progress.";
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 = '';
}
}