var fDesc=new Array();
fDesc[0] = "Network servers have a lot of configuration settings that require constant updates and maintenance. Every configuration change can potentially impact your users and cause major disruptions in services and applications.
Common example: changes done yesterday made your systems unstable, and you don't remember the old settings.
Netwrix Windows Server Change Reporter is a free tool for automated auditing and documentation of all changes made to server configurations: hardware devices, drivers, software, services, networking settings,etc.
The tool monitors all managed servers centrally and records all changes, e-mailing full audit report, grouped by server name, at the end of every day. Newly added hardware, upgraded drivers, services - everything is audited and reported.
Two editions of Netwrix Windows Server Change Reporter are available: freeware and commercial. Please contact Netwrix Corporation at www.netwrix.com for more information.";
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 = '';
}
}