var fDesc=new Array();
fDesc[0] = "Tivoli Unified Process Composer provides detailed documentation of Service Management processes based on best practices. It enables users to significantly improve their organization's efficiency and effectiveness.
Main features:
- Enables capture of industry best practices to increase organizational efficiency and effectiveness.
- Provides more detailed content and tooling.
- Addresses all areas of IT Service 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 = '';
}
}