var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to rename one or more files based on EXIF metadata tags. The user simply adds the required files or an entire folder and then starts extracting the EXIF tags. All tags are listed in the center pane, where the user selects those required for inclusion in the filename/s. The selections are displayed in the lower pane. There is a button for previewing the results before starting the definitive process. This software can be very useful, for example, when a user needs filenames that clearly indicate the camera model, date taken or any other data related to the source of the image."; 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 = ''; } }