var fDesc=new Array();
fDesc[0] = "SolarWinds Patch Manager is an automated patching and vulnerability management tool for Microsoft and 3rd-party software.
Main features:
- View details of 3rd-party software patches and the status of endpoints managed by SCCM.
- Discover patch statuses and vulnerabilities of all Microsoft and other 3rd-party applications.
- Manage patches for your Microsoft® products, and diagnose and fix problems from the Windows® Update Agent.";
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 = '';
}
}