// start split here
// name="description" content=""
// name="designation" content="PS"
// name="csg" content="Yes"
// name="pcg" content="Yes"
// end split here

/*
 *	Revised by: Craig Emsley
 *	Date: July 30, 2006
 *
 *	Revised by: ** YOUR NAME HERE **
 *	Date: ** MONTH DAY, YEAR REVISED **
 *
 *	---------------------------------------------------------------------------
 *
 *	This script composes and displays today's date in the following format:
 *
 *	day, month dd, yyyy
 *
 *	-- WARNING: DO NOT ADD OTHER FUNCTIONS INTO THIS SCRIPT!! -- 
 *
 *	-- DO NOT EDIT THESE FUNCTIONS UNLESS: --
 *
 *     1. You are familiar with HTML and JavaScript.
 *	   2. You are aware of the impact any changes will have across IE, Firefox
 *	      and Netscape!
 *
 *	-- KEEP YOUR SCRIPTS CLEAN AND ORGANIZED! --
 *
 *	-- DOCUMENT YOUR SCRIPTS! --
 *
 *	** Please provide your name and the date of any revisions you make for
 *	   other programmers at the top in the format proivded.  Thank you.  
 */

// Start script

// variable declarations
var date = new Date()
var curr_day = date.getDay()
var curr_date = date.getDate()
var curr_month = date.getMonth()
var curr_year = date.getFullYear()
var day_names = new Array("Sunday", "Monday", "Tuesday",
"Wednesday", "Thursday", "Friday", "Saturday")
var month_names = new Array("January", "February", "March", 
"April", "May", "June", "July", "August", "September", 
"October", "November", "December")

//formats and prints out the date
document.write(day_names[curr_day]+", "+month_names[curr_month]+" "+curr_date+", "+curr_year)

// End script