﻿// JScript File
  var d = new Date();
var weekday = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
var monthname = new Array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
var the_day= weekday[d.getDay()];
var the_date = d.getDate();
var the_Month = monthname[d.getMonth()];
var the_Year = d.getFullYear();
var the_whole_date = the_day + ', ' + the_date + ' ' + the_Month + ' ' + the_Year;
document.write("<div align='right'>" + the_whole_date + "</div>");
