var fDesc=new Array();
fDesc[0] = "Steel Usb Sentry 2x effectively prevents users from introducing malicious programs, pirated softwares and other unwanted data like un-authorized audio and video files from getting in to the networked workstations either intentionally or accidently.
Main Features:
-Preventing data theft and data infiltration through un-authorised media.
-Preventing introduction of malicious and un-authorised software files in to the network.
-Keeping the control of who uses the portable drives with the administrator.
-Real time information about files being copied in and out of the portable medias.
-Log the activity of portable medias like Usb drives, Memory card usage";
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 = '';
}
}