var fDesc=new Array(); fDesc[0] = "Emsa Disk Check is a dual-purpose utility, for disk checking and also benchmarking. What it does, is scanning/reading the entire contents of a disk (CD, DVD or hard drive; or even floppy) and show any read errors that may appear, but also show drive speed information, progress statistics etc.
Main features:
- useful to quicky and fully scan removable disks like CD, DVD for surface defects like disk scratch problems, bad CD-R/RW DVD-R/RW writes, etc.;
- can check CD-ROM, DVD, hard disks, even floppy disks;
- useful for benchmarking a drive, be it CD, DVD or HDD;
- shows 'locked' files on disks
- useful speed comparison (shows the 'X' multiplier speed comparison with CDs and DVDs) with possibility of switching in CD/DVD 'X' mode
- it scans/reads a disk fully until completion or user stop, at the maximal speed available
- reports progress, statistics (files, folders, time elapsed, estimated time remaining)
- reports any errors encountered (error count and log entry for each)"; 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 = ''; } }