var fDesc=new Array(); fDesc[0] = "ImgDescribe is a small software that allows you to edit some of the EXIF metadata that are stored with an image from a scanner or digital camera. EXIF metadata are stored in the image file and contains lots of information about the picture, some of these fields can be used to store an image description, author name and copyright notice. ImgDescribe has been written to easily edit these fields (description, artist, copyright) moreover ImgDescribe can optionally remove all other Exif fields. ImgDescribe can also work in batch mode using a text file or a DESCRIPT.ION file"; 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 = ''; } }