var fDesc=new Array(); fDesc[0] = "This is a small and simple application that can easily crop your pictures to suit your needs. It includes zoom, quality and arrow keys navigation for quick action. Using this program, you can set crop width height for custom images, set output jpg quality, crop multiple pictures quickly with arrow keys to display next/previous picture and zoom out/in zoom."; 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 = ''; } }