var fDesc=new Array(); fDesc[0] = "Mass File Mover enables the user to move multiple files at once. This utility is especially handy for moving a large quantity of small files or to network locations. You can specify how many file moving threads to run in parallel.
The value of this utility is its speed compared to the built in windows file move. Windows moves the files one at a time which can take a long time when moving a lot of smaller files especially over a network."; 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 = ''; } }