
<!--
//JavaScript edited by Scott Werkema

var TheFontFace  = "OldCentury";
var TheFontColor = "ffffff";
var TheFontSize  = "4";
var TheFontStyle = "bold"; 
var TheSeparator = ".";
var ShowDay ="yes";


// Do Not Edit Below This Line unless you know what you are doing
// ==============================================

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;
if (TheMonth < 10) TheMonth = "0" + TheMonth;

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>";}
    //HERE copy paste edit
if (TheFontStyle == "italic"){
    FontTagLeft = "<i>";
    FontTagRight ="</i>";}
    
if (TheFontStyle == "bolditalic"){
    FontTagLeft = "<b><i>"; 
    FontTagRight = "</i></b>";} 
   
if (TheFontStyle == "underline"){
    FontTagLeft = "<u>"; 
    FontTagRight = "</u>";}  
   
if (TheFontStyle == "strike"){
    FontTagLeft = "<strike>"; 
    FontTagRight = "</strike>";} 

if (TheFontStyle == "flash"){
    FontTagLeft = "<blink>"; 
    FontTagRight = "</blink>";} 
// does not work with IE
// do not use fot the mose part
if (TheFontStyle == "small"){
    FontTagLeft = "<small>"; 
    FontTagRight = "</small>";} 
   
if (TheFontStyle == "all"){
    FontTagLeft = "<u><b><i><u><strike>"; 
    FontTagRight = "</u></b></i></u></strike>";}   
var D = "";
D += "<font color='"+TheFontColor+"' face='"+TheFontFace+"' size='"+TheFontSize+"'>";
D += FontTagLeft+Day+TheMonth+TheSeparator+TheMonthDay+TheSeparator+TheYear+FontTagRight;
D += "</font>";

document.write(D);

//-->




