var fDesc=new Array();
fDesc[0] = "PDF to EPUB Converter is the software you need to make your PDF files readable on your eBook device. No more tedious scrolling while trying to read a PDF on an eReader!
Features:
- Converts PDF to ePub
- Converts PDF to Kindle
- Reflowable text - easy to read on eBooks
- Supports scanned PDF books (through OCR)
- Preserves layout and formatting
- Preserves fonts, styles, images, hyperlinks, bulleted lists, tables
- Easy: just click and convert
- ePub is readable on: Nook, iPad, iPhone, Sony Reader, and others.
- The most exact conversion available on the market
- Batch convert many PDFs at one time";
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 = '';
}
}