//<!--
	// michael_obrien@mitel.com
	// Media Development
	// 9 Feb 1999
	theDate = new Date(document.lastModified); theYear=theDate.toString(); 
	theYear= theYear.substring(theYear.length-4,theYear.length);

	if (theDate.getMonth() == 0){ theMonth = 'January'}; if (theDate.getMonth() == 1){ theMonth = 'February'}; if (theDate.getMonth() == 2){ theMonth = 'March'}; if (theDate.getMonth() == 3){ theMonth = 'April'}; if (theDate.getMonth() == 4){ theMonth = 'May'}; if (theDate.getMonth() == 5){ theMonth = 'June'};	 if (theDate.getMonth() == 6){ theMonth = 'July'}; if (theDate.getMonth() == 7){ theMonth = 'August'}; if (theDate.getMonth() == 8){ theMonth = 'September'}; if (theDate.getMonth() == 9){ theMonth = 'October'}; if (theDate.getMonth() == 10){ theMonth = 'November'}; if (theDate.getMonth() == 11){ theMonth = 'December'};		
	// place the date within the document at this point
	document.write(theMonth,' ',theDate.getDate(),',  ',theYear);
//-->


