var fDesc=new Array(); fDesc[0] = "This is a Windows version of the Data LifeGuard Diagnostics. It will test WD internal and external drives. In additional, it can provide you with the model and serial of WD drives attached to the system. On the main program screen, there are two windows. In the top window, you will see the drives in your system, that are available for testing.

The model number, serial number, and capacity of each drive will be displayed. In the bottom window, the partition information for the selected drive will be displayed.

You will see the following options:

- QUICK TEST - performs SMART drive quick self-test to gather and verify the Data Lifeguard information contained on the drive.
- EXTENDED TEST - performs a Full Media Scan to detect bad sectors. Test may take several hours to complete depending on the size of the drive.
- WRITE ZEROS - writes zeros to the drive with options of Full Erase and Quick Erase. File system and data will be lost.
- VIEW TEST RESULT - displays the latest test results."; 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 = ''; } }