var fDesc=new Array();
fDesc[0] = "Acronis Backup for VMware is the fastest, easiest, and most cost-effective virtual machine protection available. This software helps you back up and restore your entire VMware vSphere setup easily even if you aren't an IT expert.
- Get up and running with almost zero learning curve
- Protect everything in one easy step
- Recover lost data 100x faster than other backup methods
- Save on time and storage with smart backup technology
- Monitor your VMware backups via any mobile device
- Manage your VMware backups directly from vSphere
- Enjoy unlimited P2V/V2V migrations.";
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 = '';
}
}