var fDesc=new Array();
fDesc[0] = "CyberMama is a program designed to plan, control and restrict the use of PC by children and teenagers.
If you have a computer in your family, you are sure to face problems with your child wasting too much time in front of it. A new game and colorful sites fascinate the child and hold his attention all day through. At his age, he simply doesn't realize the risks he runs due to continuous, hours and hours, contact with the PC.";
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 = '';
}
}