function calendar() {
        var now = new Date()
        var mon = new Months()
}
mon = new Months()
now = new Date()

function Months() {
        this[0] = "January"
        this[1] = "February"
        this[2] = "March"
        this[3] = "April"
        this[4] = "May"
        this[5] = "June"
        this[6] = "July"
        this[7] = "August"
        this[8] = "September"
        this[9] = "October"
        this[10] = "November"
        this[11] = "December"
}
document.write("<b>", mon[now.getMonth()], " ")
document.write(now.getDate() + "</b>")

// IF YOU CAN SEE THIS CODE THEN YOUR BROWSER WILL NOT SUPPORT JAVA SCRIPT AND NEEDS TO BE UPDATED

