var fDesc=new Array();
fDesc[0] = "SpeakQ plug-in takes everything you love about WordQ and adds forgiving speech.
The SpeakQ plug-in:
-Lets you type the words you know and use voice to text to say the the ones you don’t
-Speech recognition helps you write everything you say from single words to entire paragraphs
-Offers suggestions for words you have difficulty pronouncing
-Train its voice recognition to understand your voice, with no reading required
-More tolerant speech recognition for children, accents and speech difficulties than other software
-Allows you to mix typing and speaking for best results
-No voice commands to remember or distract";
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 = '';
}
}