var fDesc=new Array();
fDesc[0] = "Watermark Studio, developed by Arclab, is a complete tool to insert watermarks on digital images and photographs, a good alternative for photographers, designers, and artists to protect their work from copyright infringement.
Features:
- Supports jpeg photos, png, gif, tiff, bmp and psd images
- Batch convert images and photos to popular image formats
- Resize photos and create thumbnails
- Transparent watermarks with custom opactiy";
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 = '';
}
}