function copynotice(isLinkOK)
{
	var month = new Array("JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC");
	var lm = document.lastModified;
	var lmdate = Date.parse(lm);
	var nd = "";
	if(lmdate == 0)
		lm = "UNKNOWN";
	else {
		nd = new Date(lmdate);
		lm = nd.getDate()+" "+month[nd.getMonth()]+" "+nd.getFullYear();
	}
	document.write("<DIV STYLE='font-family: Verdana,Arial,Helvetica,sans-serif; font-size: smaller; text-align: center'><DIV STYLE='font-size: smaller'><BR>Copyright &copy; 2001-"+nd.getFullYear()+"&nbsp;Matt M P&eacute;rez, San Jose, CA USA<BR>"
	+"Reproduction is not allowed without the <A HREF='mailto:mperez@dropby.com?subject="+escape("Request to copy")
	+"&body="+escape("SOURCE: ")+escape(document.location)+"%0A"
	+escape("TARGET: http://")+"%0A"
	+escape("REASON:  (why not just link?)")+"%0A"
	+"'>written approval</A> of the rights holder.<BR>");
	if(isLinkOK)  
		document.write("Links to this page are allowed for appropriate use.<BR>");
	else  
		document.write("Direct links to this page are not allowed.<BR>");
	document.write("<BR></DIV></DIV>");
}
