var fDesc=new Array();
fDesc[0] = "RealeWriter does this:
- Lets children (and adults) of all ages create cool, educational picture books called RealeBooks (“Really Books”).
- Gives children of all ages access to thousands of free RealeBooks created by children, parents, and educators.
- Lets you print RealeBooks, share them with friends and family via email, and share them with the world through RealeLibraries (“Really Libraries”).
- Anchors your community’s literacy cycle, enabling parents, teachers, and students to create and publish culturally relevant books that help other students develop reading skills.";
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 = '';
}
}