var fDesc=new Array();
fDesc[0] = "Enables effective management of the IT asset lifecycle, to lower cost, mitigate license compliance risk, and better align IT with business goals.
Main features:
- Optimize software licenses and reduce likelihood of overbuying as well as fines due to under-licensing.
- Help control the cost of IT assets with a single solution that tracks and manages your hardware, software and related information throughout their life cycle.
- Optimize IT asset utilization and IT service levels: deploy not more, not less.
- Closely align IT with business requirements through IT asset cost and usage information.
- Reduce time, cost and risk associated with compliance audits through comprehensive software license management.
- Relevant vendor, contract, lease, warranty and license data minimizes procurement & maintenance expenses and helps negotiate contract renewals.
- Improve service desk quality & incident resolution time with accurate IT asset information.";
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 = '';
}
}