<!-- 
var stampdays = new Array( "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");

// Month Names - Guess what this array does. 0..11 to the system clock month

var stampmonths = new Array( "January","February","March","April","May","June","July","August","September","October","November","December");

// GRABS the Date info from your System clock when your Browser reads  enters the page.
var thedate = new Date();

//Gets the Translated Arrays written to the webpage for viewing. Remember you can use this for other things, too
document.write(stampdays[ thedate.getDay()] + ", " + stampmonths[ thedate.getMonth()] + " " + thedate.getDate() + ", " +   thedate.getFullYear());

// -->