var fDesc=new Array();
fDesc[0] = "Award-winning, cross-platform data collection and analysis software
Data collection and analysis is an integral part of any science investigation. Whether graphing manually-entered data, collecting real-time data from a sensor, or remotely logging data, SPARKvue software helps you and your students address important science and engineering practices in your labs.
Easy-to-use and yet powerful, SPARKvue's collaborative features make this application ideal for use in and out of the science classroom or lab.";
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 = '';
}
}