var fDesc=new Array();
fDesc[0] = "PDF Manager helps manage, control and audit your PDF documents.
It helps with the problem facing many content providers who publish using the PDF medium:
Can I create a report of all published PDFs?
Do I know what private, confidential or sensitive information is hidden in my PDFs?
Do my published PDFs conform to the information security policy?
Do I review my PDFs for correct security permissions before release?
Features and Benefits:
Instantly batch report on private metadata information that may have been left in PDFs.
See the hidden data you never knew existed in your documents:
Author, Creator, Producer, Title, Subject,Keywords
Instantly report on the security permissions of your PDFs.
See the PDFs that do not conform to your companies data security strategy:
Encrypted , Tagged , Print Permission , Copy Permission , Change Permission , Add Notes Permission.
Create customizable reports in the format you need:
HTML (for viewing in a browser)
XML (for database use)
CSV (for spreadsheet use)
RTF (for word processor use)
TEXT (for underlying raw data)";
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 = '';
}
}