var fDesc=new Array();
fDesc[0] = "Chemland has been in use as an integral part of the general chemistry programs at the schools where it has been developed--Hartwick College in Oneonta, NY and the University of Massachusetts at Amherst--for six and three years respectively.
Chemland, a suite of freely available exploratory general chemistry educational computer programs, has been written to augment standard book and lecture course material for introductory level chemistry with discovery-based learning exercises. Many of the modules are also available as Java applets.
Chemland consists of 64 interactive program modules written in Visual Basic.";
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 = '';
}
}