    <!--//<![CDATA[
    function displayDate()
    {
        today = new Date();
        strWeekday = today.getDay();
        strToday = today.getDate();
        strMonth = today.getMonth();
        strYear = today.getYear();

        // Correct Year for year 2000+
        if (strYear < 1000)
            strYear += 1900;

        // Get WeekDay
        switch(strWeekday)
        {
            case 0:
                strWeekday = "Sunday";
                break;
            case 1:
                strWeekday = "Monday";
                break;
            case 2:
                strWeekday = "Tuesday";
                break;
            case 3:
                strWeekday = "Wednesday";
                break;
            case 4:
                strWeekday = "Thursday";
                break;
            case 5:
                strWeekday = "Friday";
                break;
            case 6:
                strWeekday = "Saturday";
                break;
        }
    
        // Get Month
        switch(strMonth)
        {
            case 0:
                strMonth = "Jan"
                break;
            case 1:
                strMonth = "Feb"
                break;
            case 2:
                strMonth = "Mar"
                break;
            case 3:
                strMonth = "Apr"
                break;
            case 4:
                strMonth = "May"
                break;
            case 5:
                strMonth = "Jun"
                break;
            case 6:
                strMonth = "Jul"
                break;
            case 7:
                strMonth = "Aug"
                break;
            case 8:
                strMonth = "Sept"
                break;
            case 9:
                strMonth = "Oct"
                break;
            case 10:
                strMonth = "November"
                break;
            case 11:
                strMonth = "Dec"
                break;
        }

        // Get Suffix of date (th, rd, st)
        switch(strToday)
        {
            case 1,21,31:
                strSuffix = "<sup>st</sup>";
                break;
            case 2,22:
                strSuffix = "<sup>nd</sup>";
                break;
            case 3,23:
                strSuffix = "<sup>rd</sup>";
                break;
            case 4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,24,25,26,27,28,29,30:
                strSuffix = "<sup>th</sup>";
                break;
        }    
        document.write (strMonth + " " + strToday + ", " + strYear);
    }
    //]]>-->