Javascripts for change inserts and one page changes:
These are for out side a folder - within a folder the extension ../ will have to appear and ../../ if within another folder in a
folder ei "../footer.js".
1) Footer.js is for time period of: Nov. 1999 - Feb. 2005
2) footer2005.js - is for pages created in 2005 -
3) footer2006.js - is for pages created in 2005 -
4) footer2007.js - is for pages creted in 2006
E-mails:
1) for County CC - email.js -
2) for State Coordinator - emailStateCC.js -
// *************************
document.write("© Copyright 2006 Judi Burns. All Rights Reserved. All materials contained on these pages are furnished for the free use of those individuals researching their family origins. ANY COMMERCIAL USE, PUBLICATION, OR POSTING OF THIS MATERIAL ON ANY OTHER WEBSITE, WITHOUT THE WRITTEN CONSENT OF THE COORDINATOR/AUTHOR/SUBMITTER OF THE MATERIAL/PAGE, IS PROHIBITED. All images used on these pages were obtained from sources permitting free distribution, or generated by the author, and are subject to the same restrictions/permissions. All persons contributing material for posting on these pages do so in recognition of their free, non-commercial distribution, and furthermore, are responsible to assure that no copyright is violated by their submission.");
// *********************
That document.write( ) needs to be all on one line.
You can break it up, but then you need "...." on each line and a + at front of each line after first.
Example:
//*****************************
document.write("© Copyright 2006 Judi Burns. All Rights Reserved."
+ " All materials contained on these pages are furnished for the free use "
+ "of those individuals researching their family origins. "
+ " ANY COMMERCIAL USE, PUBLICATION, OR POSTING OF THIS"
+ " MATERIAL ON ANY OTHER WEBSITE, WITHOUT THE WRITTEN "
+ " CONSENT OF THE COORDINATOR/AUTHOR/SUBMITTER OF THE "
+ " MATERIAL/PAGE, IS PROHIBITED. All images used on these pages were "
+ " obtained from sources permitting free distribution, or generated by the author, "
+ " and are subject to the same restrictions/permissions. All persons contributing "
+ " material for posting on these pages do so in recognition of their free, "
+ " non-commercial distribution, and furthermore, are responsible to assure that"
+ " no copyright is violated by their submission." );
//********************************