var fDesc=new Array();
fDesc[0] = "With AccessibleNews Daisy, you can convert news websites and blogs into DAISY digital talking books, and read them at your convenience - when you are commuting to work, or over your breakfast and cup of tea!!
AccessibleNews Daisy is a software for your Windows PC. It reads RSS feeds, downloads the articles to your computer, extracts the articles from each page, and then creates a Daisy book.";
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 = '';
}
}