var fDesc=new Array();
fDesc[0] = "Logger Lite makes collecting science and math data easier than ever. The simple interface makes learning intuitive by making science visual.
Main features:
- Learn Visually and Intuitively: Rather than tell students that water changes state at 0°C, let them see it for themselves! You can also investigate magnetic fields, gravity, and force with hands-on exploration and activities to help reinforce scientific concepts.
- Predict Before You Collect: The prediction tool allows you to sketch your prediction before the experiment. Encourage your students to evaluate their assumptions just like real scientists!
- Animated Real-time Displays: Choose between three styles of meters for the most intuitive visualization of live readouts. Customize between analog and digital meters, colors, and more.
- Science and Math Analysis Tools: Examine details about each data point, calculate statistics on your data, draw a prediction onto the graph, and more!";
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 = '';
}
}