var fDesc=new Array();
fDesc[0] = "PDF Split And Merge is a piece of software to split and merge PDF documents and much more. It’s not just a splitter or a merger, but it’s a "swiss knife" letting you rotate, encrypt, decrypt etc. Features:
Encrypt your PDF files (RC40 bits, RC128 bits, AES128 bits) and set permissions on them.
Add a PDF document as the front page or addendum (or both) to your PDF documents.
Mix alternate pages taken from two PDF documents in straight or reverse order into a single document.
Extract attached files from a PDF document.
Decrypt your PDF files.
Set viewer options to tell the viewer application how should open the document.
Set the metadata of a document (author, title, subject and keywords).";
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 = '';
}
}