var fDesc=new Array();
fDesc[0] = "The devices depicted in some of the images in this User Guide may differ from yours, but the information is applicable to your unit as well.
Main Features:
- Back up files and folders to and restore them from an external USB drive
- Access backed up files and folders remotely via the web
- Share access to files, photos, music and videos via the web
- Use media streaming to play digital photos, music and video on a networked home
entertainment system without turning on your computer
- Organize files automatically using Drag and Sort™
- Give users full access to public folders while restricting access to private folders
- View backup and storage status for all users with SimpleView™
- Mirror data through Drive Configuration";
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 = '';
}
}