var fDesc=new Array(); fDesc[0] = "OCR File Splitter is a program that is designed to split files based upon text contents. It can be used on Tiff Images (requires Microsoft Office Document Imaging) or searchable PDF files.

The program will separate a multi-page file into individual files by applying rules to each page of the document. If text is present that matches a rule it will become the first page of a new document, if it is not present the page will be added to the previous document.

With this logic files can be mixed together as the first page on one document may contain "Acme Corp" and on another it may contain "Consolidated Corp" etc., as the program can process an unlimited amount of rules when searching for the first page of a document."; 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 = ''; } }