var fDesc=new Array();
fDesc[0] = "KobaSpeech 2 is a speech synthesizer with the possibility to include all voices from Nuance Vocalizer. The High Quality voices 22kHz have a standard SAPI-5 interface for Microsoft Windows.
To use a computer for voice output and text-to-speech, you need a program like:
- Zoomtext Magnifier/ScreenReader (magnification with speech),
- LunarPlus (magnification with speech),
- SuperNova (magnification, speech and braille output),
- Window-Eyes (screen reader),
- Jaws (screen reader)";
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 = '';
}
}