var fDesc=new Array();
fDesc[0] = "HLEKTRONIKOS LOGOGRAFOS is a speech recognition tool.
Main features:
- Success rate over 98% in converting your voice to text.
- Built-in 700,000 word dictionary, which allows the dictation of many types of texts.
- Emphasis on spoken language and the language used in newspapers!
- Dictation in Greek, British and American English.
- Compatible with Microsoft Word 97, Word 2000, Word XP, - Word 2003, Word 2007, Word 2010, Word 2013.
- Ability to add new words, terms and abbreviations both manually and automatically from existing documents (ascii).";
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 = '';
}
}