var fDesc=new Array();
fDesc[0] = "cSpeech Standard Edition contains six popular speech therapy software products in one easy-to-use application, making it one of the most comprehensive, yet affordable, speech therapy packages on the market today.
Often in speech therapy you rely on auditory feedback to modify your speech. By using icSpeech, you also have the advantage of visual feedback. With simple to use biofeedback displays you can view your speech in real-time, make corrections, and instantly see the results.
You can also make recordings, compare them with examples and perform precise measurements on a wide range of speech parameters, including pitch, voicing, timing and loudness. With the new speech recognition features, you can also learn how to pronounce any sound, word or sentence and get instant feedback on your speech intelligibility.";
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 = '';
}
}