var fDesc=new Array();
fDesc[0] = "Ken-A-Vision offers educational solutions with its market-leading EduCam software. Make learning fun and easy by putting the “iCan” in the classroom. Dynamic educational software unlocks today’s content and curriculum by broadcasting real-time lessons, images, and student work to any device. Students own their learning experience while expressing critical thinking, proving comprehension, and demonstrating creativity.
Features intuitive and easy-to-use. Ideal for all ages and grade levels, session ID unique to each classroom for security, etc.";
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 = '';
}
}