var fDesc=new Array(); fDesc[0] = "As the name states, this program is useful for quickly resizing and cropping JPEG pictures. It can also be used to adjust the quality setting of a picture to reduce disk space usage. It requires windows XP or later and also requires the Microsoft .net framework 2.0, which will be installed from the Microsoft web site if necessary.

Version 1.1 adds the ability to overwrite the original file when saving and fixes some minor bugs. Thanks to Adam Pacey for his assistance with this version.

Version 1.2 adds the ability to copy & paste, so you can paste in pictures from the clipboard and save them as jpeg files. It also adds the ability to open files in some other formats (png and tiff) although they can only be saved as jpegs."; 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 = ''; } }