var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to copy data from one or more folders to one or more destination folders. There are options to add: files individually, an entire folder, multiple folders or a list of files can be loaded from a file. The user can remove filename entries containing or not containing 'x' from the list. Destination folders are added and the user can choose to add all subfolders or enter the number of subfolders to be included. Using this time saving software, even large numbers of files and folders can be handled with 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 = ''; } }