function copy() {
  var then = "2004";
  var now = new Date();
  var year = now.getFullYear();
  document.write(then + " - " + year);
}