var fDesc=new Array();
fDesc[0] = "Dhaatu gives you the following information about each of the 116 elements of the modern Periodic Table:
- Name
- Symbol
- Atomic Number
- Atomic Weight
- 1st Ionization Potential
- 2nd Ionization Potential
- Electronegativity
- Atomic Radius
- Boiling Point
- Melting Point
- Electronic configuration
- Density
- Name(s) of the discoverer(s)
- Year of discovery
Is that all ? Of course, not. Dhaatu also gives you:
- Print your Periodic Table
- A molecular weight calculator
- Custom graphs
- Custom search
- The Periodic Table as your desktop wallpaper
- Individual notes for each element
- Chemical properties and applications of every element.";
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 = '';
}
}