var fDesc=new Array();
fDesc[0] = "PDF Distributor is a program that will separate a multi-page text searchable PDF and distribute it via email based upon its contents.
It is ideally suited for distributing reports and statements without printing and mailing.
Instead of using a conventional printer, the user prints the statement or report with a program that creates a text searchable PDF.
This can be done with the standard version of Acrobat or a freeware program such as PDF Creator.
Once created, PDF Distributor will split the file into separate documents based upon a unique word that appears on the first page of each document, such as "Statement" or "Page 1".";
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 = '';
}
}