var fDesc=new Array();
fDesc[0] = "Junior Watch allows you to protect your juniors from online dangers.
Main features:
- Catch every single key stroke and review them on the server.
- Screen captures give you a good idea of what the computer has been used for by your kid.
- You can log on to JuniorWatch.com anywhere to locate your kid and his/her computer on a map.";
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 = '';
}
}