var fDesc=new Array();
fDesc[0] = "Local Update Publisher allows system administrators to publish their own updates to Windows Server Update Services using WSUS local publishing.
Features:
- Publish applications to a domain or workgroup.
- Create rules to define install behavior.
- Monitor progress of installations.
- Use WSUS groups for approvals.
- Utilize existing WSUS architecture.
- Support multiple parent and child servers.
- Import and export standard update catalogs.";
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 = '';
}
}