var fDesc=new Array();
fDesc[0] = "PDF Properties Changer by Debenu lets you quickly add, edit or remove properties from PDF files effortlessly. Simply right-click on a PDF and select 'PDF Properties Changer > Edit PDF Properties' to begin editing.
Main Features:
- Edit the Title, Author, Subject and Keywords property fields of PDFs.
- Edit the properties of multiple PDFs at the same time.
- Standalone application -- it does not require Adobe Acrobat® or any other software to work.
- Extremely easy-to-use and quick to load.";
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 = '';
}
}