<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

/* 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();
  }
}

function copyDate2() {
  var cpyrt2 = document.getElementById("copyright2")
  if (cpyrt2) {
     cpyrt2.firstChild.nodeValue = (new Date()).getFullYear();
  }
} 


window.onload = copyDate; */

copyright=new Date();
update=copyright.getFullYear();

/* document.write("Copyright © 2001-"+ update + " (your company name) All rights reserved."); */

document.write('<span class="footertext">&copy; Copyright 2002-'+ update + ' ');

document.write('<a href="index.html" target="_top">Roth Scratchpads and Photos</a> ');

document.write('All Rights Reserved<br>');

document.write('Unless noted, all photographs on this web site are &copy; Copyright 2002-'+ update + ' ');

document.write('<a href="index.html" target="_top">Roth Scratchpads and Photos</a> ');

document.write('All Rights Reserved<br>');

document.write('</span>');



//  End -->
