var fDesc=new Array();
fDesc[0] = "Do you ever wonder how a greenhouse gas affects the climate, or why the ozone layer is important? Use the sim to explore how light interacts with molecules in our atmosphere.
Main Topics:
- Molecules
- Light
- Photons
- Absorption
Explore how light interacts with molecules in our atmosphere. Identify that absorption of light depends on the molecule and the type of light";
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 = '';
}
}