var fDesc=new Array();
fDesc[0] = "Is a smart and powerful tool that helps you people with disabilities.
Main features:
- Designed for people with disabilities
- Teaches touch typing skills using speech and text instructions
- 14 Lessons to learn the keys on the QWERTY computer keyboard
- Practice typing skills by typing letters, words and sentences
- Performance feedback on typing speed and accuracy
- Compatible with Microsoft Windows 95 and 98
- Speech output using Microsoft SAPI Speech Engines (Sound card of computer)
- Adjust fonts, colors and speech
- Educational version supports multiple students and more detailed performance information";
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 = '';
}
}