var fDesc=new Array();
fDesc[0] = "The "Pantera PDF toolkit" project aims to bring together in one open source software with a visual approach, a set of operations on PDF documents, the number of which increase with the development of software.
Main features:
- Merge PDF Documents
- Split PDF Pages into new PDF Document
- Extract Images from PDF Documents
- Export each page of a PDF Document as an image file
- Rearrange PDF Pages
- Delete PDF Pages
- Rotate PDF Pages
- Crop PDF Pages to selection
- Add Pages to PDF Document from image
- Add Pages to PDF Document from scanner
- Update PDF Metadata";
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 = '';
}
}