<!-- This Script And Over 400 Others Found At --!>
<!--    Java City 2000 http://www.jc2k.com    --!>
<!-- hide --
/*
     
   Copyright (C) 1999 Scott Sparks (sparksscott@hotmail.com).
   May be freely distributed, but please do not remove copyright notices.
   No warranteed for usability for any apps are given.
*/

var now = new Date();
var textout;
var month = now.getMonth();
var date = now.getDate();
var year = now.getYear();

if (month==0) textout="January";
if (month==1) textout="Febuary";
if (month==2) textout="March";
if (month==3) textout="April";
if (month==4) textout="May";
if (month==5) textout="June";
if (month==6) textout="July";
if (month==7) textout="August";
if (month==8) textout="September";
if (month==9) textout="October";
if (month==10) textout="November";
if (month==11) textout="December";

textout += " " + date + " " + year;
document.write ("<font size=2><font face=arial><font color=000000>" + textout + "</font>");
// -- end hiding -->
