var fDesc=new Array();
fDesc[0] = "The Periodic table of Chemical Elements is a chemistry software, which provides information about all chemical elements of periodic table along with the animation of bohr's model of that element and a photograph representing a typical application of that element. The following are the category of scientific information provided for each element of the periodic table.
Atomic Number, Number of Neutrons, Atomic Mass and Density
Oxidation states and Electronic configuration
Melting point and Boiling point
Discoverer and year of discovery of the element
Occurrence, Ore, Natural abundance and Extraction method
Properties and Uses of the element
Popular isotopes and Popular compounds";
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 = '';
}
}