var fDesc=new Array();
fDesc[0] = "It is an app designed to convert PDF documents to Word, Excel, Text, Image, and EPUB formats for easy portability. In addition, an OCR plug-in is available for converting scanned PDF into editable PDF documents.
Main Features:
- Convert PDF to Word, Excel, PowerPoint, HTML, EPUB, images and plain text.
- Convert up to 200 PDF files at once.
- Convert a 100-page PDF within 1 minute, super fast.
- Supports password-protected PDF files.";
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 = '';
}
}