/* Creates a date object and leave it blank to use the default of today's date */

var today = new Date;

/* Writes the date to the browser window */
document.write(today);




