var fDesc=new Array();
fDesc[0] = "ActivityMon products will help you with the knowledge what are your children doing. You will be informed about the CDs and DVDs inserted & played, programs installed & deinstalled, inserted USB flash disks.
Currently it is very easy to access violated materials especially through the internet. And they are accessible even for your children. As a parents you are responsible for them, including the time you are not with them.";
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 = '';
}
}