var fDesc=new Array();
fDesc[0] = "Watermarking Pro for Windows is a tool to watermark images, watermark photo in a batch mode with support for image effects, image resizing, preview support and more!
PRO version benefits: multiple watermarks at once, animated GIF support, multipaged TIFF support and access to advanced settings
Why Watermarking Pro?:
Save time by running directly from Windows Explorer
(PRO VERSION ONLY): apply multiple watermarks at once (for example, date/time stamp at the bottom and copyright information at the top)
(PRO ONLY): use EXIF, IPTC macros in watermarks;
You can preview every change before actually applying the watermark;
Special symbols like ©, ® to indicate copyrights using text watermarks;
Save time by processing folders and sub-folders with images;
Support for TIFF format images (to watermark b/w scanned documents in TIFF format);
(PRO VERSION ONLY) Add watermark to animated GIF images;";
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 = '';
}
}