var fDesc=new Array();
fDesc[0] = "The shredder for the digital age. To protect your organization's confidential data or your personal privacy, trust on X-Ways Security as a hard drive cleansing solution. To maximize security, X-Ways Security offers up to 9 fully configurable overwrite passes and the U.S. Department of Defense (DoD) standard for hard drive sanitization as specified in the 5220.22-M operating manual.
- Delete selected confidential files securely, such that they are not recoverable.
- Wipe free drive space and clear slack space, to get rid of sensitive data from deleted files, esp. temporary files.
- Clean formerly used NTFS file records, which contain filenames and other data
- Erase logical drives or entire physical disks completely and irreversibly, e.g. to produce forensically clean target media or to sanitize media before re-use in a different environment of before donating.
- Trusted download: copy files from classified media without slack space overhang.";
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 = '';
}
}