var fDesc=new Array();
fDesc[0] = "Verity Parental Control Software allows you to track and monitor what your kids are doing on the computer and online in an easy, non invasive way.
Main Features:
- Use parental controls to block specific programs or websites.
- Log the time spent in each program.
- Track all websites that are visited.
- Monitor online chatting using screenshots.
- Set daily time limits on computer, application, or website usage per Windows user login.
- Take screenshots of the active windows at regular intervals.
- Customize restrictions for each child by their Windows user login.
- Access usage reports through a password protected web interface or automated emails.
- Count the number of keystrokes and mouse clicks by application.";
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 = '';
}
}