function write_date() {

// date script created by SourGrapes.org
today = new Date();
day = today.getDay();
month = today.getMonth();
date = today.getDate();
year = today.getYear();

var saying = new Array ("To forgive is to give forth. It releases you from the past.", "Generously Generate Genuineness","Remember it's you who feels your feelings and your feelings are a choice","Allow your self to open unknown doors, don't ask how, determine when.","Freedom is a Human Requirement","Humans are the only creatures who grow from their mistakes ~ all others perish","Have a logical quality to your mystical ways","Use food for nutrition not for entertainment","The only way to stop an argument is to stop arguing","When you enter any room make it your home - then enable all others to feel at home","Fear is an excuse to fail and doubt is an easy way out","The barometer of how true your desire is, is measured by the degree of your success.","If you don't want to make mistakes, don't try anything new","All movement creates opposition.  It's a law of nature","Happiness is contingent on nothing but itself","It's never too late to be what you might have been","Don't let the tiny flies of time destroy the infinite nature of your life","Draw the lines that connect the dots of your successes not your failures","Don't try to fit in, you fit perfectly in you","Meet every person as an equal, never as a stranger","Give yourself the right to want the world you want","The only value money has is the trust or fear we give it","Fear as a snack is a great motivator, as a diet it's a killer","Do not take life personally, but commit to your destiny","Think mythologically not pathologically","Life is your chantz 2 impact Earth","To forgive is to give forth. It releases you from the past.", "Generously Generate Genuineness","Remember it's you who feels your feelings and your feelings are a choice","Allow your self to open unknown doors, don't ask how, determine when.","Freedom is a Human Requirement","Humans are the only creatures who grow from their mistakes ~ all others perish","Have a logical quality to your mystical ways","Use food for nutrition not for entertainment","The only way to stop an argument is to stop arguing","When you enter any room make it your home - then enable all others to feel at home","Fear is an excuse to fail and doubt is an easy way out","The barometer of how true your desire is, is measured by the degree of your success.","If you don't want to make mistakes, don't try anything new","All movement creates opposition.  It's a law of nature","Happiness is contingent on nothing but itself","It's never too late to be what you might have been","Don't let the tiny flies of time destroy the infinite nature of your life","Draw the lines that connect the dots of your successes not your failures","Don't try to fit in, you fit perfectly in you","Meet every person as an equal, never as a stranger","Give yourself the right to want the world you want","The only value money has is the trust or fear we give it","Fear as a snack is a great motivator, as a diet it's a killer","Do not take life personally, but commit to your destiny","Think mythologically not pathologically","Life is your chantz 2 impact Earth");
var days = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var months = new Array ("January","February","March","April","May","June","July","August","September","October","November","December");

var year_string = year.toString();

var the_year = year_string.substring(2);

var the_day = date;
if (the_day < 10) {
the_day = "0" + the_day;
}

month++;
if (month < 10) {
month = "0" + month;
}

document.write("<TABLE><TR><TD class=two align=right valign=top width=40%> Daily quote. " + days[day] + " " + month + "." + the_day + "." + the_year + " : </TD>");
document.write("<TD class=daily align=left width=*>" + saying[date-1] + "</TD></TR></TABLE>");
}



