var fDesc=new Array();
fDesc[0] = "VMware Consolidated Backup enables LAN-free backup of virtual machines from a centralized proxy server.
VMware Consolidated Backup (VCB) 1.0.3 is compatible with VirtualCenter 2.0.2 and ESX Server 3.0.2 (or newer) only.
VMware Consolidated Backup includes a feature in the integration modules for VCB to remove old snapshots remaining from previous backup jobs if the previous backup job failed to remove the old snapshots.";
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 = '';
}
}