var fDesc=new Array();
fDesc[0] = "Unicenter Desktop and Server Management has been renamed to the CA Client Automation.
CA Client Automation delivers a complete view into your entire IT asset base and employs full automation and remote client management capabilities for managing the end user computing environment – whether physical or virtual. No matter how complex your IT environment, it streamlines the daily operational tasks that bog down your IT organization, helping you run more efficiently and cost-effectively than ever before.
This client management solution enables you to increase the efficiency and security of desktops, laptops and devices with user self-service, policy-based client automation and robust analytics. It also unifies the management of your physical and virtual environment in order to reduce management complexity and improve service delivery – all while supporting your transformation to the next generation of desktop management.";
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 = '';
}
}