var fDesc=new Array();
fDesc[0] = "A-PDF Page Cut is a simple, lightning-fast desktop utility program that lets you break PDF document Pages into smaller pages. It provide visual cut marks editor to cut PDF pages more conveniently.
A-PDF Page Cut does NOT require Adobe Acrobat, and produces documents compatible with Adobe Acrobat Reader Version 5 and above.
Features:
* Provide visual cut marks editor;
* Different pages can apply a different cut mark;
* Support drag & drop cut mark (vertical or horizontal split lines);
* Gives the ability to undo and redo splitter placement operations;
* Zooms PDF Page working area in and out
* Support Define cut page slice order (vertical, horizontal, first-last, last-first)";
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 = '';
}
}