var fDesc=new Array();
fDesc[0] = "SaySo is a reading & writing toolbar for people with dyslexia. Using human sounding voices, SaySo reads aloud as you type, or as you browse webpages, Word documents and emails.
Main features:
- Read your text aloud with human sounding voices.
- Highlight words as they are read aloud.
- Instant access to 1000's of books through SaySo's unique Bookshelf.
- Scan and Read inaccessible documents.
- Save documents and web-pages as MP3 or talking books to 'read' on the move.";
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 = '';
}
}