var fDesc=new Array();
fDesc[0] = "Starry Night Enthusiast gives you the freedom and resources to explore the night sky on your computer or with the naked eye or a pair of binoculars. The application features exoplanets modelled as 3D bodies with proper location, size, orbit and planetary textures, and an Universal Search function to explore the universe.
Features:
- Exoplanets & Stars modelled in 3D
- Simple, fast, user-optimized interface
- Full-colour Mosaic All-Sky CCD image of the entire night sky.
- High-resolution OpenGL planetary maps and star-field graphics.
- Calendar, event finder, logbook, light pollution & night vision.
- Enhanced telescope controls, FOV indicators, equipment lists.
- Up to 500 million downloadable stars.
- More than one million galaxies, clusters, deep-sky objects.
- Daily asteroid, comet & satellite updates.
- Add your own celestial objects, build your own star databases.
- Advanced altitude graphing and ephemerides generator.
- Intergalatic one-click "Go-There" viewing.
- 3D particle galaxies.
- SkyGuide interactive multimedia tours.";
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 = '';
}
}