var fDesc=new Array();
fDesc[0] = "Blio is a feature-rich eReading application that allows you to go beyond the written word. Experience books through the eyes of the author, with crystal clear sound and images that come alive in brilliant color. In Blio, books are more than just words and pictures. They're pathways to new and exciting ways of learning, living and doing.
Features:
- Experience content in full color, in the original layout and as the author intended.
- Interact with your pages; take notes, highlight, cut, copy, paste and print.
- Watch videos, slide shows and animations.
- Listen to your favorite book – with professionally recorded audio.";
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 = '';
}
}