var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to join multiple folders into one. The user can load a list of folders from a text file or simply choose the folders to be joined. There is a button to allow inclusion of all subfolders. The user then chooses the destination. There are options to: copy the source folders and their content or to only copy the files contained in the chosen folders into the destination folder (so that all the files reside in only one folder). Using this time saving software, large numbers of folders and files can be processed with just one click."; 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 = ''; } }