var fDesc=new Array();
fDesc[0] = "TEXT-READER DICTIONARY will give you instant explanations of the words. This multilingual(German, Spanish, Turkish.. etc.) dictionary gives you precise definitions and written pronunciations. When your cursor moves over a word, this software will automatically search the database and provide you with a definition in the pop-up hint right under the mouse cursor.
If you click on a word TEXT-READER will say it.
TEXT-READER will help you to learn new words in the shortest possible time. This speaking software contains tests for memorizing spelling and pronunciation of the words
Please visit www.text-reader.com";
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 = '';
}
}