var fDesc=new Array(); fDesc[0] = "The PageManager allows you to create, remove, insert and replace pages from within PDF files. .
This functionality is similar to the Insert, Extract, Delete and Replace options within standard Acrobat but with additional functionalities such as the creation of a new (empty) PDF document and the specification of the size of any new pages that are to be inserted."; 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 = ''; } }