//// Page Address Script   ////////////
////  Auto creates the 'Page Updated by' date //////
////  Adds Copyright date with year auto updating to system year. /////
////  Adds in 'All Rights Reserved'
///////////////////////////////////////////////////////////////////////////////////
	update = new Date(document.lastModified)   //gets a date object for the last modified date
	currentYr = new Date();                               //gets a date objects for the current date

	theMonth = update.getMonth()+1                 //sets variables for last modified month,day,yr
	theDate = update.getDate()

	currYr = currentYr.getFullYear();				 //sets variable for current yr

	// Sets up the variable to contain the printed text
	addressTag = "<FONT SIZE='-2' FACE='Arial,Helvetica,Geneva,Swiss,SunSans-Regular' color='black'>Page Updated on " + theMonth + "/" + theDate + "/"  + currYr +  "</FONT>"
	addressTag+="<br><font size='-2' face='Arial'>Comments? Please email <a href='mailto:nheid@cox.net'>nheid@cox.net</a></font><br>"
	addressTag+="<font size='-2' face='Arial'>Copyright &COPY;2002-" + currYr + "  </font>"
	addressTag+="<font size='-2' face='Arial'>Capistrano Unified Education Association<br></font>"
	addressTag+="<font size='-2' face='Arial'>All Rights Reserved<br></font>";
	document.writeln(addressTag);