var fDesc=new Array();
fDesc[0] = "Parental Internet Filter is an Internet Filtering software program that allows parents to protect their children in the Internet. With our Parental Internet Filter you can:
- Filter-out websites, blogs, e-mails and instant messages if they contain inappropriate words.
- Specify days and hours when Internet is allowed.
- Limit amount of data that can be sent or received via Internet.
- Set the lists of allowed and blocked Internet programs.
- Get ‘in time’ notification e-mails.
- Get detailed reports about visited web sites, used programs and etc.";
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 = '';
}
}