var today = new Date ();
var year = today.getFullYear();
var sOutput;


/*
-----------------------------------------------------------------------------
as of 2010-02-09 Explorer and Opera use a newer version of ECMA script,
which handles the getYear method of the Date object differently,
i.e. the method returns a 4-digit year, not a 2-digit year starting 1900

as of 2010-07-25 use the getFullYear method instead of getYear,
which must be adjusted for the century
---------------------------------------------------------------------------
*/

sOutput = "Copyright &copy; 2006-" + year +
  " Glenbard East Music Boosters." + 
  " All rights reserved.<br/>" +
  "Webhosting by Yahoo! &reg;";
document.write(sOutput);