var TheFontFace  = "Verdana";
var TheFontColor = "#FFFFFF";
var TheFontSize  = "1";
var TheFontStyle = "plain"; 
var TheSeparator = " ";
var ShowDay ="yes";
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 MonthNane = TheMonth
if(TheMonth==1) MonthNane="January";
if(TheMonth==2) MonthNane="February";
if(TheMonth==3) MonthNane="March";
if(TheMonth==4) MonthNane="April";
if(TheMonth==5) MonthNane="May";
if(TheMonth==6) MonthNane="June";
if(TheMonth==7) MonthNane="July";
if(TheMonth==8) MonthNane="August";
if(TheMonth==9) MonthNane="September";
if(TheMonth==10) MonthNane="October";
if(TheMonth==11) MonthNane="November";
if(TheMonth==12) MonthNane="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+TheMonthDay+TheSeparator+MonthNane+TheSeparator+TheYear+FontTagRight;
D += "</font>";
