var fDesc=new Array();
fDesc[0] = "Support your workforce & restore employee data in seconds with Acronis Backup 12 - the world's fastest, easiest backup!
- NEW! Protect all your Window PC & Mac users - both in the office and on the road
- NEW! Restore computers & tablets in seconds - 2X faster than our closest competitor
- NEW! Protect all your systems via 1 easy web console accessible from any device
- NEW! Install in 3 easy clicks, and get up and running with zero learning curve
- Capture everything - files, applications, OS - with powerful 1-click disk imaging
- Restore anything with a few simple clicks - from a single file to a full system
- Disaster-proof your data with easy auto-backup to the ultra-secure Acronis Cloud
- Restore a system to new, dissimilar hardware without complications
- Automate your backups to keep track of changes without interrupting workflows";
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 = '';
}
}