/******************************************************************************/
/* timedate.js                                                                */
/*                                                                            */
/* Copyright 2001 by Sposetti, Inc                                            */
/* Web address: http://www.kevinhasley.com                                    */
/* Last update: January 16, 2001                                              */
/******************************************************************************/

/******************************************************************************/
/* Compute the date and time                                                  */
/******************************************************************************/
var now = new Date()
var day = now.getDay();
var month = now.getMonth();
var curdate = now.getDate();
var year = now.getYear();
var hour = now.getHours();
var minutes = now.getMinutes();
var mmStr = ("" + minutes);

if(month==0) month=" January";
if(month==1) month=" February";
if(month==2) month=" March";
if(month==3) month=" April";
if(month==4) month=" May";
if(month==5) month=" June";
if(month==6) month=" July";
if(month==7) month=" August";
if(month==8) month=" September";
if(month==9) month=" October";
if(month==10) month=" November";
if(month==11) month=" December";

if(day==1) day=" Monday";
if(day==2) day=" Tuesday";
if(day==3) day=" Wednesday";
if(day==4) day=" Thursday";
if(day==5) day=" Friday";
if(day==6) day=" Saturday";
if(day==0) day=" Sunday";

if (mmStr.length < 2) {
        minutes = "0" + minutes;
}

if (year < 1000) {
        year = year + 1900;
}
	
document.write("<font size=-1 color=white face=Verdana, Arial, Helvetica, Sans-Serif>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+day+"&nbsp;"+month+"&nbsp;"+curdate+"</font></b>");
