var fDesc=new Array();
fDesc[0] = "Kid Savvy PC provides a secure desktop for children to develop computer skills, surf kid-safe websites, and enjoy educational and entertaining activities. It comes pre-loaded with many web links and activities, and requires minimal computer knowledge to set up. Your PC will remain safe from inadvertently deleted files, and your children will remain safe from inappropriate internet content. Kid Savvy PC also allows children to run other installed children's software and games.
It runs like any other program on your computer, except it safeguards important system files from access. It blocks access to the normal Windows desktop and start-menu while providing access to only certain programs and websites that the parent has pre-approved.
Kid Savvy PC also allows access to selected installed games. Many parents find the timer feature quite handy for limiting their children's computer time.";
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 = '';
}
}