var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to crop one or more images. The user simply adds image file/s or an entire folder to be processed. There are options to: crop the first image and then crop the rest of the list with the same dimensions, crop each image with individual dimensions and save instantly, to do the same but query each save or to crop each image to specified dimensions but in different positions. The output can be saved as JPG or BMP image files. There is a slider to adjust JPG quality."; 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 = ''; } }