var fDesc=new Array();
fDesc[0] = "Keep your kids safe on the Internet!
Kids Web Menu is a free, easy-to-use Web browser for kids of all ages.
* The highly visual, single-click interface enables kids as young as 2 years of age to navigate the Web without even knowing how to read!
* A unique camera mode lets kids take pictures while safely exploring the Internet.
* As a parent or teacher, you control which sites your children may visit by selecting from our online directory of preapproved sites.
* Enjoy instant access to new sites as they are added to the directory, and recommend favorite sites of your own.
* Cutomize your child's experience with fun themes from our continually growing Themes Library.
* Change themes with a click of a button - no additional downloads are required.
Despite its ease of use, Kids Web Menu makes security its highest priority.
For a safer Web environment, Kids Web Menu:
* Blocks pop-ups
* Blocks ads from external domains
* Blocks links to unauthorized sites
* Removes the address bar to prevent typing of Web addresses";
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 = '';
}
}