var fDesc=new Array(); fDesc[0] = "Mass file processing to rename, move, copy files with following features:
mix path and filenamecomponents to a new filename and location;
enumerate files;
integrate mp3-id tag information in the new filenames;
Convert filenames to be compatible with different operating systems (FAT(MSDOS), VFAT(Windows), ISO9660(CD), HFS(MacOS),...);
Change to UPPERCASE/ lowercase and more;
UNDO-function;"; 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 = ''; } }