<!--
// please keep this text when you copy the source code
// made by Ragecreations version 0.2

//Get Date
var months=new Array(13);
months[1]="JANUARY";
months[2]="FEBRUARY";
months[3]="MARCH";
months[4]="APRIL";
months[5]="MAY";
months[6]="JUNE";
months[7]="JULY";
months[8]="AUGUST";
months[9]="SEPTEMBER";
months[10]="OCTOBER";
months[11]="NOVEMBER";
months[12]="DECEMBER";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var timeValue = "" + ((hours >24) ? hours -24 :hours)
if (timeValue == "0") timeValue = 24;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes


//Get Day
var days=new Array(7);
days[0]="SUNDAY";
days[1]="MONDAY";
days[2]="TUESDAY";
days[3]="WEDNESDAY";
days[4]="THURSDAY";
days[5]="FRIDAY";
days[6]="SATURDAY";
var lday=days[time.getDay()];

//-->

