var fDesc=new Array();
fDesc[0] = "With Disk Monitor Pro, you will always know when your disk space starts to run low across all of your local and remote disks! Just set a specified disk space threshold, and Disk Monitor Pro will let you know when that threshold is breached.
Main features:
-Monitor: Monitor local and remote disks (UNC paths, mapped drives, local drives).
-Email Notification: Email which can be sent when an alert is triggered but also as full reports which outline all drives. Receive email notifications when a disk reaches a specified threshold
-Audible alerts: An audible sound from the PC you are monitoring from which is customizable.
-Desktop Popup alerts: A popup message on the desktop. Receive popup alerts when a disk reaches a specified threshold
-Run on Alert: The ability to run any file when an alarm is triggered. Run program, start batch files on alert
-Create Webpages : Automatically create HTML pages which can be viewed by anyone
-Reports: Daily disk space reports via email
-No Installation:
No installation needed on the server to work";
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 = '';
}
}