﻿// JScript File
function insertDate(obj)
{
  var d = new Date();
var weekday = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
var monthname = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
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;
var the_whole_date = the_Month + ' ' + the_date + ', ' + the_Year;
document.getElementById(obj).innerHTML="<div align='right'>" + the_whole_date + "</div>";
}