var fDesc=new Array();
fDesc[0] = "-Create PDF in Batch Process.
-Create PDF from Print Command.
-Merge File into Single PDF.
-Encrypt PDF with 40-bit and 128-bit Encryption algorithm.
-Custom Page size for PDF File.
-Insert Watermark.
-Decrypt PDF File in Batch Process (If password is known).
-Convert PDF file to image in Batch Process.
-Convert PDF to .jpg,.jpeg,.gif,.png,.tif, .bmp,.exif,.wmf.";
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 = '';
}
}