var fDesc=new Array();
fDesc[0] = "Leading a new generation of security compliance and remediation solutions, Secutor Prime is the first product of its kind to incorporate the government’s Security Content Automation Protocol (SCAP). This standards-based content was developed by the National Institute of Standards and Technology for the federal government, and defines the standards for compliance assessment.
Features:
- Interactive Standards-based assessment system for local endpoints
- Configuration and security remediation and undo
- Security reporting and data export";
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 = '';
}
}