var fDesc=new Array();
fDesc[0] = "BookHub Reader is an eBookReader application which can be used to read Sinhala,Tamil and English publications of Sri Lanka. This tool is easy to use; you just need to follow few simple steps: download the program, purchase the books from BookStore after registration, open the BookHUB eReader app, select the book you downloaded and enjoy reading.";
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 = '';
}
}