var fDesc=new Array();
fDesc[0] = "vCenter Orchestrator provides out of the box workflows that can help administrators automate existing manual tasks. Administrators can utilize sample workflows from VMware vCenter Orchestrator’s workflow library and provide a blueprint for creating additional workflows.
vCenter Orchestrator exposes the building blocks to enable more detailed workflows to be created for VMware vSphere. Integration with third-party tools includes solutions such as service desks, change management systems, or asset management systems";
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 = '';
}
}