var fDesc=new Array();
fDesc[0] = "To control computers and internet for preventing teenagers from watching inappropriate contents.
Including
- Restricted words to shut down any browser tab 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 and to play the
show as administrator later on)
Important notes:
- Default Administrator's password is "admin" should be changed after installation.
- GF Pre is hidden by default ( F10 to show & F9 to hide).
- GF Pre can't be uninstalled except from inside the software.
To be Used at:
Home, Internet Coffee, Companies, Schools, Public Libraries and Universities";
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 = '';
}
}