var fDesc=new Array();
fDesc[0] = "File Sense is a simple to use agent-less application that can scan any network share to perform an extensive data analysis to profile your data. Without a tool to decipher your data your network could be a great repository of vacation pictures.
File Sense uses intelligent reporting of your data profile to identify:
-Efficiency
-Duplicate Files
-How often data is access
-How often data is modified
-List by extention
-Age of files
-Historical Growth over 7 years
- And much more";
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 = '';
}
}