var fDesc=new Array();
fDesc[0] = "Metadata editor for the scanned films and DSC-captured digital images.
Features:
- Modification of the most EXIF, IPTC and XMP metadata tags for JPEG and TIFF files
- Equipment library to store metadata properties of the film cameras and other analog equipment
- Custom XMP schema for film camera properties (e.g. film name, exposure number etc.) and user-defined XMP schema for extra flexibility
- Batch operations (copy metadata from another file, auto-fill exposure number)
- Customizable set of the supported metadata tags";
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 = '';
}
}