var fDesc=new Array();
fDesc[0] = "Using technological advancements in VMware vSphere and the VMware vStorage APIs for Data Protection, Veeam customers experienced the following benefits derived from native support of thin-provisioned disks and Changed Block Tracking:
* 10+ times faster for incremental backups
* Up to 5 times faster for full backups
* 80% lower cost for near-continuous data protection (CDP) compared with traditional CDP
* Up to 30 percent lower storage costs
* Increased reliability by leveraging the latest vStorage technology";
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 = '';
}
}