var fDesc=new Array(); fDesc[0] = "PictureViewer is a tool that lets you modify the EXIF information in images from digital camera's. For example: the Title, Author, Subject and Copyright statement within the picture. This can be done in a single pass for an entire directory structure. Simply drag the directory onto the icon panel, push the 'select all' button and the entire directory structure will be modified with the changes you make."; 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 = ''; } }