var fDesc=new Array();
fDesc[0] = "ReadingBar for Internet Explorer - Reads any web page aloud to you.
Main Features:
- Highlights words in Internet Explorer
- Easily creates .mp3 or .wav files from web pages
- Generates text only version from any web page
- Magnifies pages, text, pictures and scrollbars
- Translates web pages into four languages
- Dictionary lookup, add your own pronunciation
- Reading Window (just like ReadPlease PLUS 2003)
- Text-to-speech with Mike, Mary and Sam";
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 = '';
}
}