var fDesc=new Array();
fDesc[0] = "Free Compliance Checkers are based on VMware vCenter Configuration Manager and can be used to manage configuration compliance requirements in your environment . Each free checker includes compliance assessment for a single standard and can only assess a small number of hosts or VMs (depending on checker) at the same time. To use any of the available checkers simply download the selected checker to a Windows desktop.
The intuitive web-based interface requires little or no learning curve. Administrators simply point the checker at a target environment (hosts or specific VMs depending on the checker downloaded) and execute a compliance assessment request. The resultant compliance report provides a detailed rule by rule indication of pass or failure. Where compliance problems are found users are directed to a detailed knowledge base for an explanation of the rule violated and advice on remediation.";
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 = '';
}
}