// By John Elliott; created 20 December 2002; last updated 10 January 2003
// Code the appearance and behavior of my copyright notice at top of every page

copyright=new Date();
update=copyright.getYear();

document.open();

document.write("<SPAN STYLE=\"position: absolute; height: 25px; top: 5px; left: 13px\"CLASS=MYCOPYRIGHT>&copy;"
	+
	"1996-2008"
	+ 
	" <A CLASS=MYCOPYRIGHT HREF=\"mailto:john@maurinewatkins.com\">John Elliott</A>. All rights reserved."
	+
	" This page last updated: "
	+ 
	document.lastModified 
	+ 
	"</P></SPAN>");

document.close();

