var fDesc=new Array();
fDesc[0] = "eBooks Compiler is so easy to use you can create an ebook in 2 minutes ...
Create an ebook in less than 2 minutes with eBooks Compiler software?
If this is your first time using this ebook compiler software then maybe you will not be able to do it. Now, if you had a look at the ebook compiler help videos first, it might be possible. Think about it. If you actually practiced a couple of times it would definitely be easier and faster.";
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 = '';
}
}