var fDesc=new Array();
fDesc[0] = "BlackArmor Discovery automatically finds Seagate Network Attached Storage (NAS) servers on your local network.
From the BlackArmor Discovery window, you can:
- View a list of BlackArmor NAS servers on your local network.
- View and access a list of shared folders (or shares) on a selected server.
- Make a share easy to access by mapping it as a network drive on your computer (for example, as the Z: drive).
- Open BlackArmor Manager to set up, modify, or monitor a server.
- Open BlackArmor Backup to begin a backup of the files on your computer.
- Register a server.
- Access Seagate Support online.";
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 = '';
}
}