<!-- Begin

<!-- Obtained at http://BontragerConnection.com/
//
// Auto-Copyright Year Updater
//
// Copyright 2007 Bontrager Connection, LLC
//
// Edit as indicated, then paste the JavaScript code
//    where you want the copyright line to print.
//
// Between the quotation marks, below, type the entire
//    copyright line for your web page. Where the current
//    year is to be placed, type: [[YEAR]]
// If the copyright line contains any quotation marks, they
//   must be escaped with a backslash: \"
// Example:
//   Copyright 2004-[[YEAR]] Person, Inc.


<!-- NOTE: If you use a ' add a slash before it like this \' -->



document.write('<div id="footer">');
var CopyrightLine = "<p>&copy Copyright 2004-[[YEAR]]&nbsp; <a href=\"http://www.stpauljacksonville.org\" target=\"_top\">St. Paul Lutheran Church</a>&nbsp; ";


// No edits required below this point.
y = new Date();
year = y.getFullYear();
re = new RegExp("\\[\\[YEAR\\]\\]");
CopyrightLine = CopyrightLine.replace(re,year);
document.write(CopyrightLine);

document.write('All Rights Reserved&nbsp;');
document.write('&nbsp;For more information feel free to call us at 904-765-4219');

//document.write(' <A HREF="contact.asp">Contact Us</a></p>');


document.write('<br>');

//  End -->



