var fDesc=new Array();
fDesc[0] = "File Wipe software that uses advanced overwriting algorithms to effectively erase the contents of your hard drive for securing a complete data destruction. The software can easily wipe files, folders, entire drives, free space, system activity, application traces, etc.
Features:
-Permanently deletes data from hard drives and other storage media
-Wipes unused and slack space left on the hard drive
-Wipes application traces and temporary Internet files
-Creates wipe list for wiping selected files and folders
-Schedules the wiping process to run at a later time";
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 = '';
}
}