<!-- 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:
// &copy; 2004-[[YEAR]] Person, Inc.
var CopyrightLine = "&copy; 2006-[[YEAR]] Red Lion Arlingham";
// No edits required below this point.
y = new Date();
year = y.getFullYear();
re = new RegExp("\\[\\[YEAR\\]\\]");
CopyrightLine = CopyrightLine.replace(re,year);
document.write(CopyrightLine);
//-->