var fDesc=new Array(); fDesc[0] = "The Chemical Reactivity Worksheet (CRW) is a free program you can use to find out about the reactivity of substances or mixtures of substances (reactivity is the tendency of substances to undergo chemical change).

It includes:

- a database of reactivity information for more than 5,000 common hazardous chemicals;
- a way for you to virtually "mix" chemicals--like the chemicals in the derailed tank cars above--to find out what dangers could arise from accidental mixing."; 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 = ''; } }