var fDesc=new Array();
fDesc[0] = "The PDF Form Filler tool allows you to open and fill PDF form. As you add a PDF form having restriction of editing; the software will load and make it unrestricted.
Main features:
- Unrestrict, Open and Fill the Forms in PDF file format
- Option to Edit and save filled PDF form into PDF file format
- Allows you to export only data of filled PDF form separately
- Option to clear all filled data & Zoom In / Out is present
- Adobe Acrobat Reader should be present on machine to fill PDF";
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 = '';
}
}