// JavaScript Document  date2.js
/*
To call the script, place a link to ths file you on the Web page where you want
 the date displayed. The link should look like this: 
 <script language="JavaScript" src="date2.js"></script> 
 Be sure there are no spaces or code between the opening and closing <script> tags 
 as this may cause the loading of the script to fail.
*/
var stampdays = new Array( "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var stampmonths = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");
var thedate = new Date();
document.write(stampdays[ thedate.getDay()] + ", " + stampmonths[ thedate.getMonth()] + " " + thedate.getDate() + ", " +   thedate.getFullYear());

