var fDesc=new Array();
fDesc[0] = "PDF Markup is a user interactive markup program that allows you to markup single-page and multipage PDF files. Markup options include: Text annotations, watermarks, redactions, highlighting, rubber stamps, barcodes, encryptions, and more.
Key Features:
- Drawing lines, shapes, arrows, paths, freehand, color fill, hatch fill, bullets.
- Redaction (black-out, white-out)
- Highlighting
- Watermarks
- Rubber Stamps
- Text Balloons
- Insert Text
- Insert Images
- Encryptions
Requirements:
- Windows 2000, 2003, XP, Vista, or Windows 7
- 32 or 64-bit Operating System
- 1 GB Ram
- Microsoft Framework 2.0 or higher";
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 = '';
}
}