var fDesc=new Array();
fDesc[0] = "Qaryan is a modular, extensible Hebrew text-to-speech engine tuned for Standard Israeli Hebrew.
This free software is easy to install, has a simple interface and you don't have to read any instructions before using it.
The software comes with associated tools and three voices: Hebrew Esther, Hebrew Yoram and a voice with Arabic accent.";
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 = '';
}
}