// COPYRIGHT.JS : Web Page Template for Copyright Notice Javascript -->
// Written by: Bureau of Sanitation Webmaster -->
// Created on: 12/13/2004 -->
// Last Revised on: 01/10/2005 -->
// Copyright 2004-2005 Bureau of Sanitation -->

<!-- Begin

function copyright(type)
{
// get the current year
	var time=new Date();
	var year=time.getYear();
	
	if (year > 1999)
		year=time.getYear();
	else  
		year=1900 + time.getYear();
	
// display copyright notice
document.write('<hr>');
document.write('<Center>');
document.write('<Strong>');
document.write('<font size="-1">');
document.write('&copy; Copyright ' + year + ' City of Los Angeles. All Rights Reserved.');
if (type == 'long')
  {
  document.write(" For licenses to use these materials or to report infringement, please contact the Los Angeles City Attorney's Office, Intellectual Property Counsel, 200 North Main Street, City Hall East, Los Angeles, CA 90012");
  }
document.write('</font>');
document.write('</Strong>');
document.write('</Center>');
document.write('<hr>');
}

//-->
//  End -->

