var fDesc=new Array();
fDesc[0] = "CrashPlan PRO takes your business backup to new heights by continuously sending your encrypted data to our secure online cloud. In less than 3 minutes you can be backing up your critical business data , and the “set it and forget it” nature will make business backup one less thing to worry about .
No hardware to buy
Simply sign up, download and install to get started backing up to the cloud
No slow-downs
CrashPlan PRO operates silently in the background so you can stay focused on business at hand
Sophisticated management
Monitor backup progress and quickly make company-wide changes through the PRO Online Dashboard";
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 = '';
}
}