var fDesc=new Array();
fDesc[0] = "Unified BookReader is a handy environment for reading the books on your computer's screen, providing a wide customization possibilities and more cool features.
It s for any home or corporate customer without restrictions.
Main features:
- Full support for the most common formats - Html and Rtf.
- Dynamic list of recently open books.
- Save and restore the current position in every book.
- Automatically built table of content.
- Customized color scheme.";
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 = '';
}
}