//<![CDATA[
                                    <!--

                                    function y2k(number) 
                                    { 
                                    return (number < 1000) ? number + 1900 : number; 
                                    }

                                    today = new Date();
                                    year = y2k(today.getYear());
                                    month = today.getMonth() + 1;
                                    date = today.getDate();
                                    day = today.getDate();

                                    theMoonAge = calcMoonAge(year, month, date);
                                    theMoonPhase = doMoonPhase(theMoonAge);
                                    // HebrewDate=ShowHebrewDate(today);

                                    document.write("<font face=Helvetica,Arial size=1 color=#C0C0C0>Today is "+getLongDate(today)+" ev.<BR>")
                                    document.write("An IVxix.<BR>")
                                    document.write("<font face=Helvetica,Arial size=1 color=#C0C0C0>");
                                    // HebrewDate.Print();
                                    document.write("<\/font><BR>");
                                    document.write("Sun in " + starsigns[StarSign(day,month)] +".<BR>");
                                    document.write("The moon is <br>"+theMoonPhase+".<BR>")
                                    // changed for y2k. astronomical moon cycle changes
                                    // document.write("The current lunar month is "+theMoonAge)
                                    document.write("The current lunar month is "+Math.round(theMoonAge));


                                    if (theMoonAge==1)

                                    {       
                                    document.write(" day old.<BR>")
                                    }
                                    else
                                    {       
                                    document.write(" days old.<BR>")
                                    }

                                    document.write("Next <B>new<\/B> moon:<BR>")
                                    document.write(""+getMidDate( getNextNew(theMoonAge) )+".<BR>")
                                    document.write("Next <B>full<\/B> moon:<BR>")
                                    document.write(""+getMidDate(getNextFull(theMoonAge))+".<BR>")
                                    document.write("<BR CLEAR=ALL>")



                                    //-->
                                    //]]>
