var fDesc=new Array();
fDesc[0] = "To control computers and internet for preventing adults from watching inappropriate contents.
Main features:
- Browsing History
- Restricted words to shut down any application running that contains such words
(all supported Browsers)
- Restricted Sites (Live Update - Ability to add sites to be prevented later)
- Restricted Software
- Hiding your important Folders
- Monitoring user's activities (Capture the screen on a 1 minute basis capture and to play the
show as administrator later on)";
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 = '';
}
}