var fDesc=new Array();
fDesc[0] = "Stellarium is a free open source planetarium for your computer.
It shows a realistic sky in 3D, just like what you see with the naked eye, binoculars or a telescope.
It is being used in planetarium projectors. Just set your coordinates and go.
Main features:
- default catalogue of over 600,000 stars
- extra catalogues with more than 210 million stars
- asterisms and illustrations of the constellations
- constellations for twelve different cultures
- images of nebulae (full Messier catalogue)
- realistic Milky Way
- very realistic atmosphere, sunrise and sunset
- the planets and their satellites";
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 = '';
}
}