/* This program produces the copyright statement at the bottom of each DEOS page dynamically.
This prevents the web designer from having to update the copyright statement to current year,
every year */

  var today = new Date();
  var year = today.getFullYear();
  
  document.write("Copyright &#169; 2003-" + year + " DEOS");
