<!--

function current_date()
{

	CurrentTime= new Date(); //Create Date Object
	dateNames = new Array();

	dateNames[0] = "January"
	dateNames[1] = "February"
	dateNames[2] = "March"
	dateNames[3] = "April"
	dateNames[4] = "May"
	dateNames[5] = "June"
	dateNames[6] = "July"
	dateNames[7] = "August"
	dateNames[8] = "September"
	dateNames[9] = "October"
	dateNames[10] = "November"
	dateNames[11] = "December"


	year = CurrentTime.getYear() // get year
	day = CurrentTime.getDay();//Get Day
	month   = CurrentTime.getMonth() + 1;
	minutes = CurrentTime.getMinutes();
	seconds = CurrentTime.getSeconds();
	day     = CurrentTime.getDate();

	if (year < 2000)
	{
		year +=1900;
	}

	document.write(day + " " + dateNames[month-1] + " " + year);
}

// -->