var fDesc=new Array();
fDesc[0] = "DiskPulse can monitor hard disks and directories in real-time and provide disk-change monitoring statistics and reports. It provides multiple types of pie charts capable of showing the number of changed files, and the change in disk space for each file-type. You can export the detected changes to a centralized SQL database, execute custom commands, and automate Disk Pulse to send E-Mail notifications when unauthorized changes are detected in critical system files.
Disk Pulse is also available in Pro, Ultimate, Server, and Enterprise variants with varying features.";
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 = '';
}
}