var fDesc=new Array();
fDesc[0] = "Coherent PDF Tools give you a wide range of professional, robust tools to modify PDF files.
Features:
-Quality Split and Merge, keeping bookmarks. Extract pages. Split on Bookmarks.
-Linearize (Fast web view)
-Encrypt and Decrypt (including AES encryption)
-Scale, rotate, crop and flip pages. NEW Scale pages to fit
-Copy, Remove and Add bookmarks
-Stamp logos, watermarks, page numbers and multiline text. NEW Diagonal Text
-Make PDF-based presentations
-Put multiple pages on a single page
-Add, remove and manipulate annotations
-Read and set document information and metadata
-Add and remove file attachments to document or page.
-Thicken hairlines, blacken text, make draft documents
-NEW Detect missing fonts, low resolution images
-Combine multiple operations in a single command";
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 = '';
}
}