var fDesc=new Array();
fDesc[1] = "the system. The enterprise edition of Deep Freeze offers a centralized control and better management options to system administrators.";
fDesc[2] = "Director Server, users can recover accidentally lost/deleted partitions. It also allows hard disk editing at sector levels and enables users to extract information that was removed/lost by accident or virus attacks, or due to hardware/software failures.";
fDesc[3] = "maximum server performance.";
fDesc[4] = "and even your network. This is called API and can very easily be used to access SMART from the platform of an IDE (Integrated Development Platform).";
fDesc[5] = "when problems strike. Create scripted response scenarioes that execute when alarms are triggered.";
fDesc[6] = "Transaction, DNS, SMTP, POP3, FTP, SNMP, as well as various native Windows system sensors and native SQL sensors for MS SQL, MySQL and Oracle.";
fDesc[7] = "data protection to reduce data loss and downtime, and enhances the performance of your existing backup apps. Double-Take monitors file changes as they occur on one (or many) of your source servers, replicating them in real-time to a target server over your existing network links.";
fDesc[8] = "dynamic and static web pages. The program saves your resource usage such as CPU, RAM/memory, bandwith and in addition, increases the speed of page loading and decrease the downtime.";
fDesc[9] = "process/product variation as well as in the analysis and understanding of failures such as downtime and defects.";
fDesc[10] = "tool you may constantly check the response from your server and make sure that your website is online 100% of the time.";
fDesc[11] = "server defacement, spyware and other security intrusions. Recover a server in the time that it takes to reboot.";
fDesc[12] = "features: Multiple URL check, HTTP, HTTP with authentication check. Uptime statistics reports, charts and diagrams are available.";
fDesc[14] = "track downtime and find the problems areas with equipment.Plots downtime by month,type of downtime and what shift the downtime occured";
fDesc[15] = "failure how long was it before the problem was discovered? Don't wait for employees or customers to report the problem.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}