var fDesc=new Array();
fDesc[0] = "StorageCraft ShadowControl is a free monitoring and management appliance for IT environments. ShadowControl also provides:
- Push install and activation of the latest version of ShadowProtect or SPX to unprotected Windows or Linux endpoints on the same network.
- Policy-based backup job management that lets administrators assign a consistent backup job configuration to groups of SPX-protected endpoints.";
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 = '';
}
}