var fDesc=new Array(); fDesc[0] = "Scott's JPEG Commenter is a tool used to insert comments into JPEG files. It's meant to be fast, simple, and intuitive. The utility is free for noncommercial use. So why are JPEG comments useful? Well, they're kind of like writing on the back cover of a photograph -- you can jot down information about the image: where it was taken, who is in it, dates/times, etc.

The software is also useful to view existing JPEG comments. Many programs (such as photoshop) automatically insert a comment. You might also find comments in photos that you download from the web. Scott's JPEG commenter can also be used to remove comments from images if you have a commented image that you want to de-comment."; 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 = ''; } }