var fDesc=new Array();
fDesc[0] = "Features:
- Moon: Apparent Magnitude of the Moon;
- Sideral Time calculation improveded;
- Improved the calculation of Nutation and the Obliquity of the Ecliptic (now all the coefficients are take into account);
- New Icons for the Menus making them lighters;
- Bug fixed in the presentation of the Local Coordinates;
- Bug fixed when a user enter a new location (suggestion made by Ricardo Nuno)-";
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 = '';
}
}