var fDesc=new Array();
fDesc[0] = "HP Client Manager provides centralized hardware management for HP and Compaq business desktops, notebooks, and workstations from a Web browser.
It lays the foundation of the Altiris infrastructure to provide HP- and Compaq-specific information that complements other Altiris solutions to fully address system lifecycle management needs.
Main features:
- Hardware inventory for asset management
- PC health monitoring and hardware alarm notification
- Diagnostics for remote troubleshooting
- Change BIOS/security settings from the Management Console
- SoftPaq acquisition and deployment
- Manage TPM enabled HP clients with HP ProtectTools
- Web-accessible reporting";
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 = '';
}
}