var fDesc=new Array();
fDesc[0] = "Save the filled PDF locally with options to add Output Options, Description, Encrypt/Decrypt, Initial View, Presentation Effect and Advanced. Save editing now with a project file and Resume editing later. Edit or remove the original sensitive content (Text, Image, Shapes, Comment and Form Fields). Delete/Replace the original text with the New SingleLine Text.
Delete/Edit the current form field or the entire form fields. Delete/Edit the current comment or the entire comment. Group texts, shapes or pictures into a complicated object. Lock the object from editing. Save the PDFill Object and use it later easily";
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 = '';
}
}