// JavaScript Document

<!-- Paste this code into an external JavaScript file named: copyNote.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Spike McLarty :: http://www.dosadi.com/
 */

 function copyDate() {
  var cpyrt = document.getElementById("copyright")
  if (cpyrt) {
     cpyrt.firstChild.nodeValue = (new Date()).getFullYear();
  }
}

window.onload = copyDate;
