// By John Elliott; created 20 December 2002; last updated 02 June 2010
// Code the appearance and behavior of my copyright notice at top of every page

copyright=new Date();
update=copyright.getYear();

document.open();

document.write("<div style=\"position: absolute; left=0px; height=25px; width: 738px;\"><p class=mycopyright>Since 1996; &copy;1996-2010"
	+ 
	" <a class=mycopyright href=\"mailto:jelliott@peak.org\">John Elliott</a>. All rights reserved."
	+
	" This page last updated: "
	+ 
	document.lastModified 
	+ 
	"</p></div>");

document.close();


