var fDesc=new Array();
fDesc[0] = "The kids are online and you’re busy—Family Safety is there to help.
SafeSearch is locked on for Bing, Google, Yahoo! and other popular search engines. You can add kids right on the Family Safety website. For parents who are ready to give older kids a bit more responsibility, we’ve added a new setting that allows all websites but lets you know if kids go to potentially inappropriate ones.
The Family Safety website gives parents control over when kids use the computer, what games they can play, and what programs they can run.
Use activity reports to easily review your kids' online activities so you can teach them to use the Internet responsibly. Parents who want more control can use Family Safety to block inappropriate content or even limit kids to age-appropriate sites.
You can also limit your kids’ email and instant messaging access to approved contacts on Windows Live Hotmail and Windows Live Messenger, so that you’ll always know where your kids are hanging out online and who they might be talking to.";
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 = '';
}
}