var fDesc=new Array();
fDesc[0] = "Advanced Bulk PDF Watermark Creator automates the task of stamping one or more PDF documents with a watermark.
The application automatically imports all PDF documents from a specific directory and all of its subdirectories. Alternatively, users can manually import PDF documents that need to be stamped with a watermark.
Advanced Bulk PDF Watermark Creator allows users to define the following watermark properties: single-line verbiage, multiple-line verbiage, watermark location, font color, font size, font style, rotation";
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 = '';
}
}