var fDesc=new Array();
fDesc[0] = "KobaSpeech 3 is a program that combines voices in that way that they are recognised by a screen reader. KobaSpeech 3 uses the most recent voices of Nuance VOCALIZER Expressive. These natural high quality voices are standard SAPI-5 and 22khz.
KobaSpeech 3 is a speech synthesizer that can be installed on your computer with speech output and text-to-speech. Most screen reader programs are supplied with standard voices of low quality. Moreover, these programs don’t contain all available voices.";
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 = '';
}
}