var fDesc=new Array();
fDesc[0] = "The "Internet Administrator" software provides the all-round internet access control and monitoring at the
enterprises and solves an acute problem of use of the global network - abusing resources of the Internet on a workplace.
"Internet Administrator" controls access to the Internet on the basis of access policy and personal restrictions of each employee.
The Internet Administrator is:
- all-round internet monitoring;
- incoming traffic, time and bandwidth control;
- access control to web sites, by protocols, time, queries, words, etc.;
- flexible and powerful content filtering;
- URL category database with more than 3 000 000 web sites;
- more than 10 reports visually showing internet usage statistics;";
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 = '';
}
}