var d=new Date();

var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");

var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();



var msg = new Array();

Stamp = new Date();

today = Stamp.getDate();

msg[1] = "Light, endless Light, darkness has room no more.";

msg[2] = "All He loves, all He moves, all are His, all are He ";

msg[3] = "One with the Eternal, live in his infinity.";

msg[4] = "Our tasks are given, we are but instruments, Nothing is all our own that we create.";

msg[5] = "A Light there is that leads, a Power that aids.";

msg[6] = "All will come near that now is naught or far";

msg[7] = "Bear, thou shalt find at least thy road to bliss.";

msg[8] = "Our lives are inlets of an ocean's force.";

msg[9] = "Each victory gained over oneself means new strength to gain more victories.";

msg[10] = "Happiest who stand on faith as on a rock.";

msg[11] = "As knowledge grows Light flames up from within.";

msg[12] = "His failure is not failure whom God leads.";

msg[13] = "Only were safe who kept God in their hearts.";

msg[14] = "There is a meaning in each curve and line.";

msg[15] = "There is a meaning in each play of Chance.";

msg[16] = "Pain is the hand of Nature sculpturing men to greatness.";

msg[17] = "He makes our fall a means for greater rise.";

msg[18] = "Aspire intensely but without impatience.";

msg[19] = "Our life's repose is in the Infinite.";

msg[20] = "A divine force shall flow through tissue and cell, And take the charge of breath and speech and act.";

msg[21] = "A psychic fire within must be lit into which all is thrown with the Divine Name upon it.";

msg[22] = "Turn all things to honey; this is the law of divine living.";

msg[23] = "The hushed heart hears the unuttered Word.";

msg[24] = "All can be done if the God-touch is there.";

msg[25] = "All contraries are aspects of God's face.";

msg[26] = "A touch can alter the fixed front of Fate.";

msg[27] = "There is a purpose in each stumble and fall.";

msg[28] = "Wrong could not come where all was light and love.";

msg[29] = "The  soul in man is greater than his fate.";

msg[30] = "Truth is known only when all is seen.";

msg[31] = "Beauty is his footprint showing us where he has passed.";



function writeTip() { 

document.write('<strong>');

document.write('<marquee scrollamount="3">');

document.write(msg[today]);

document.write('</marquee>');

document.write('</strong>');



} 



calendar = new Date();

 day = calendar.getDay();

 month = calendar.getMonth();

 date = calendar.getDate();

 year = calendar.getYear();

 if (year < 1000)

 year+=1900

 cent = parseInt(year/100);

 g = year % 19;

 k = parseInt((cent - 17)/25);

 i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;

 i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));

 j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;

 l = i - j;

 emonth = 3 + parseInt((l + 40)/44);

 edate = l + 28 - 31*parseInt((emonth/4));

 emonth--;

 var dayname = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");

 var monthname = 

 new Array ("January","February","March","April","May","June","July","August","September","October","November","December" );

 document.write("");

 document.write(dayname[day] + "- ");

 document.write(monthname[month] + " ");

 if (date< 10) document.write("0" + date + "- ");

         else document.write(date + "- ");

 document.write(year + "    ");
