Copyright ©
<SCRIPT Language="JavaScript">
<!-- hide from old browsers
// Copyright Year
// Version 1.0
// By Mike Calabrese
// http://www.mikecalabrese.com
// 06-25-2001

// This program is available for free on an AS-IS basis.  I am not
// responsible for consequential damages, loss of income or whatever
// else that may happen as a result of the use of this program.

var today = new Date()
var year = today.getYear()
if(year<1000) year+=1900
document.write(year)
//-->
</SCRIPT>