var fDesc=new Array();
fDesc[0] = "Anno Domini is an astronomical calendar/almanac program which is designed to accompany the many personal information managers (PIMs) on the market.
Main features:
- Display a Gregorian Calendar between 1753 and 2150 AD with a view from nature for each calendar month;
- Display calendar statistics between any two calendar dates such as days elapsed, working days, weekends etc;
- Display and edit your own famous quotations from a database of 400 already supplied;
- Display the dates and times of moon phases for any location in the world;
- View the illuminated fraction and tilt of the moon and see it update in real-time;";
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 = '';
}
}