var fDesc=new Array();
fDesc[0] = "Are your students "net smart"? Help them become certified NetSmartz kids with Router's Birthday Surprise, a learning adventure that helps children ages 5-10 identify and defeat on- and offline risks.
There are three unique versions of this resource to suit your educational needs — an animated video, assembly-style presentation, and online, interactive adventure.
The presentations utilize the latest statistics, online resources, videos, and expert tips to educate, engage, and empower children and adults to be safer on- and offline.";
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 = '';
}
}