var fDesc=new Array();
fDesc[0] = "Cisco's Continuous Data Protection for Files offers three levels of insurance for your data's security. The first, Continuous Protection, creates a duplicate backup copy every time a file is saved. With Scheduled Protection, files are designated for copying onto a remote storage area on a fixed timetable. Finally, Vaulting backs up and write-protects the most important files and folders, making them unable to be modified or deleted until a specified time.
Cisco's Continuous Data Protection for Files:
Automatically protects important files in real time
Conserves storage space by backing up only changed files
Operates in the background
Makes multiple backup copies for local and off-site storage
Defines file retention period, in which a file cannot be modified or deleted until specified time
Features customizable options for both high-priority and low-priority files";
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 = '';
}
}