var fDesc=new Array();
fDesc[0] = "Blooming Kids Software is a unique teaching tool offering teachers and parents 37 individualized (and growing) educational programs to help children with Autism or PDD; slow learners; and others who require early intervention. Experts in the educational field in conjunction with parents of children who have special needs combined forces and knowledge to develop Blooming Kids Software.
The program “Talking Machine” will help children improve their ability to communicate with parents, teachers and caregivers. Like all of our programs, this is language based. It reinforces the children’s use of language when they use our programs to learn and to have fun. It includes many pictures and animations illustrating daily needs while providing a voice and text that is succinct and detailed.";
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 = '';
}
}