var fDesc=new Array();
fDesc[1] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[2] = "diverse information about the hardware and software installed on your system. As expected from a free version, this version is limited for personal use, which mean that can´t be used for commercial reports and doesn´t have any kind of tech support.";
fDesc[3] = "on the remote computer is hidden from you now!";
fDesc[4] = "of the common tasks are 'start a program', 'open a web browser', 'copy files and folders', 'search for a file', 'archive data', 'perform routine backups'. The tasks can be scheduled to execute periodically or at specific time determined by the user.";
fDesc[5] = "and the Windows Event Log) using standard SQL statements (with SELECT and WHERE syntax). The output can be plain text files, CSV, XML, HTML and more.";
fDesc[6] = ", Application and other logs of Microsoft Windows. It extends the standard Event Viewer functionality and offers new features.";
fDesc[7] = "tampering of harmful modifications. These modifications and tampering are mainly done by malicious software programs. The software behaves as a watch guard for program files for antiviruses, anti trojans and firewalls to check if they have been tampered by malicious prograns";
fDesc[8] = "allows to centralize the event log information, displaying just the required information. It allows to configure, add or delete certain events that are showed on the current event page. The program features a web-based interface with remote control capabilities.";
fDesc[9] = "archive thousands of events that are generated by devices across the entire network.";
fDesc[10] = "connection with your computer.The remote workstation, user, path, OS, permissions of the accessed folder.";
fDesc[11] = "filters and send email alerts when specific events occur.";
fDesc[12] = "on problems, security warnings and all other events that are generated within Windows.";
fDesc[13] = "EventLog Inspector can either run silent or interact with the user by displaying pop-up notifications about selected events.";
fDesc[14] = "from all machines on a LAN to a powerful Microsoft SQL Server database where you can search for any details";
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 = '...';
}
}