var fDesc=new Array(); fDesc[0] = "The AstroClock is a program that uses your computer's clock to calculate the exact position for all the planets in the sky for your locality and displays the chart on a beautiful horoscope wheel on screen.

You are given choices to select from many different wheels and colors that we have already designed. The program will also calculate and save natal charts and transiting planets. You can see the transiting planets in a bi-wheel display. All the calculations are within 2 seconds of arc.

It is a small program that will run in the background yet allowing you to bring a horoscope wheel up onto the screen at any time to see exactly where all the planets and the angles are for the moment."; 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 = ''; } }