var fDesc=new Array(); fDesc[0] = "1.Copy a file from one location to another at speed greater than 4Mb/sec depending upon PC configuration.
2.The file copied never gets deleted if it is not fully copied like in Windows copyi.e if a Cd conatins errors after 300 Mb Fcopy will copy the file till 300 Mb & then stop.
3.Particularly useful when tranferring large files from HDD to n/w/HDD or when copying a movie from CD to HDD.
4.Usually copies 30-50% faster than windows.
5..Easy to use.
6.Context Menu integration."; 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 = ''; } }