<!-- Begin
theDate= new Date();
months = new Array();
days = new Array();
months[1] = "http://www.oz-web.net/images/calendar/jan.gif";
months[2] ="http://www.oz-web.net/images/calendar/feb.gif";
months[3] ="http://www.oz-web.net/images/calendar/mar.gif";
months[4] ="http://www.oz-web.net/images/calendar/apr.gif";
months[5] ="http://www.oz-web.net/images/calendar/may.gif";
months[6] ="http://www.oz-web.net/images/calendar/jun.gif";
months[7] ="http://www.oz-web.net/images/calendar/jul.gif";
months[8] ="http://www.oz-web.net/images/calendar/aug.gif";
months[9] ="http://www.oz-web.net/images/calendar/sep.gif";
months[10] ="http://www.oz-web.net/images/calendar/oct.gif";
months[11] ="http://www.oz-web.net/images/calendar/nov.gif";
months[12] ="http://www.oz-web.net/images/calendar/dec.gif";
days[1] ="http://www.oz-web.net/images/calendar/1st.gif";
days[2] ="http://www.oz-web.net/images/calendar/2nd.gif";
days[3] ="http://www.oz-web.net/images/calendar/3rd.gif";
days[4] ="http://www.oz-web.net/images/calendar/4th.gif";
days[5] ="http://www.oz-web.net/images/calendar/5th.gif";
days[6] ="http://www.oz-web.net/images/calendar/6th.gif";
days[7] ="http://www.oz-web.net/images/calendar/7th.gif";
days[8] ="http://www.oz-web.net/images/calendar/8th.gif";
days[9] ="http://www.oz-web.net/images/calendar/9th.gif";
days[10] ="http://www.oz-web.net/images/calendar/10th.gif";
days[11] ="http://www.oz-web.net/images/calendar/11th.gif";
days[12] ="http://www.oz-web.net/images/calendar/12th.gif";
days[13] ="http://www.oz-web.net/images/calendar/13th.gif";
days[14] ="http://www.oz-web.net/images/calendar/14th.gif";
days[15] ="http://www.oz-web.net/images/calendar/15th.gif";
days[16] ="http://www.oz-web.net/images/calendar/16th.gif";
days[17] ="http://www.oz-web.net/images/calendar/17th.gif";
days[18] ="http://www.oz-web.net/images/calendar/18th.gif";
days[19] ="http://www.oz-web.net/images/calendar/19th.gif";
days[20] ="http://www.oz-web.net/images/calendar/20th.gif";
days[21] ="http://www.oz-web.net/images/calendar/21st.gif";
days[22] ="http://www.oz-web.net/images/calendar/22nd.gif";
days[23] ="http://www.oz-web.net/images/calendar/23rd.gif";
days[24] ="http://www.oz-web.net/images/calendar/24th.gif";
days[25] ="http://www.oz-web.net/images/calendar/25th.gif";
days[26] ="http://www.oz-web.net/images/calendar/26th.gif";
days[27] ="http://www.oz-web.net/images/calendar/27th.gif";
days[28] ="http://www.oz-web.net/images/calendar/28th.gif";
days[29] ="http://www.oz-web.net/images/calendar/29th.gif";
days[30] ="http://www.oz-web.net/images/calendar/30th.gif";
days[31] ="http://www.oz-web.net/images/calendar/31st.gif";
function printDate() {
document.write('<img src="' + months[theDate.getMonth()+1] + '">'); // month
document.write('<br>');
document.write('<img src="' + days[theDate.getDate()] + '">'); // day
}


//  End -->