monName = new Array ("Jan.", "Feb.", "Mar.", "Apr.", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec.")
now = new Date
document.write(monName[now.getMonth()] + " " + now.getDate() + ", " + now.getFullYear() + ": ")
