function displayDate() {

var TheFontFace  = "Arial";
var TheFontColor = "#000000";
var TheFontSize  = "2";
var TheFontStyle = ""; 

// Set the separator between the date elements;
// usually use either - or /.

var TheSeparator = ", ";

// Show or do not show the day of the week; set
// yes to show, no not to show.

var ShowDay ="yes";

// Do Not Edit Below This Line
// ==============================================

var Days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var TheDate = new Date();

var TheWeekDay = TheDate.getDay();
var Day ="";
if (ShowDay == "yes"){
    Day = Days[TheWeekDay];
    Day += ", ";}


//var TheMonth = TheDate.getMonth() + 1;
var TheMonth = TheDate.getMonth();
//if (TheMonth < 10) TheMonth = "0" + TheMonth;

if (TheMonth==0) {
TheMonth = "January ";
}
if (TheMonth==1) {
TheMonth = "February ";
}
if (TheMonth==2) {
TheMonth = "March ";
}
if (TheMonth==3) {
TheMonth = "April ";
}
if (TheMonth==4) {
TheMonth = "May ";
}
if (TheMonth==5) {
TheMonth = "June ";
}
if (TheMonth==6) {
TheMonth = "July ";
}
if (TheMonth==7) {
TheMonth = "August ";
}
if (TheMonth==8) {
TheMonth = "September ";
}
if (TheMonth==9) {
TheMonth = "October ";
}
if (TheMonth==10) {
TheMonth = "November ";
}
if (TheMonth==11) {
TheMonth = "December ";
}

var Months = new Array ("January","February","March","April","May","June","July","August","September","October","November","December");



var TheMonthDay = TheDate.getDate();
//if (TheMonthDay < 10) TheMonthDay = "0" + TheMonthDay;

var TheYear = TheDate.getYear();
if (TheYear < 1000) TheYear += 1900;

var FontTagLeft  = "";
var FontTagRight = "";

if (TheFontStyle == "bold"){
    FontTagLeft = "<b>";
    FontTagRight ="</b>";}
    
if (TheFontStyle == "italic"){
    FontTagLeft = "<i>";
    FontTagRight ="</i>";}
    
if (TheFontStyle == "bolditalic"){
    FontTagLeft = "<b><i>"; 
    FontTagRight = "</i></b>";}    

var D = "";
D += "<font color='"+TheFontColor+"' face='"+TheFontFace+"' size='"+TheFontSize+"'>";
//D += FontTagLeft+Day+TheMonth+TheMonthDay+TheSeparator+TheYear+FontTagRight;
D += FontTagLeft+Day+TheMonth+TheMonthDay+TheSeparator+TheYear+FontTagRight;
D += "</font>";

document.write(D);

}



function displayCopyright() {
var today = new Date();
document.write("<font size=-2 color=#5F5F5F>Copyright " + today.getYear() + " Oxford Bank. All rights reserved. Oxford Bank, Member <a href='goodbye.cfm?exitlink=fdic' target='_parent'>FDIC</a>. <a href='goodbye.cfm?exitlink=hud' target='_parent'>Equal Housing Lender</a> <a href='goodbye.cfm?exitlink=hud' target='_parent'><img src='images/ehl.gif' border=0></a></font>");
}
