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();
	}
	var s = "<DIV STYLE='font-family: Verdana,Arial,Helvetica,sans-serif; font-size: smaller; text-align: center'>";
	s += "<DIV STYLE='font-size: smaller'><BR>\n";
	s += "Copyright &copy; 2001-"+nd.getFullYear()+"&nbsp;Matt M P&eacute;rez, San Jose, CA USA and C. Mariano Dom&iacute;nguez, Miami, FL USA<BR>\n";
	s += "Reproduction is not allowed without the ";
	s += "<A HREF='mailto:mperez@dropby.com?";
	s += "subject=";
	s += 	escape("Request to copy");
	s += "&body=";
	s += 	escape("SOURCE: "+document.location)+"%0A";
	s += 	escape("TARGET: http://")+"%0A";
	s += 	escape("REASON:  (why not just link?)")+"%0A";
	s += "'>written approval</A> of the rights holder.<BR>\n";
	if(isLinkOK)  
		s += "Links to this page are allowed for appropriate use.<BR>";
	else  
		s += "Direct links to this page are <B>not</B> allowed.<BR>";
	s += "<BR></DIV></DIV>";
	document.write(s);
}

