// Get the Current Year for the Copyright (or other uses)
// Owner: G. Andrew Bowman
// Updated: 08/02/2007

// Get today's date
var today= new Date()
var todayYear= today.getFullYear()
document.write("2003-" +todayYear);