﻿// JavaScript Document


// Auto-Copyright Year Updater coutesy http://www.willmaster.com/library/tutorials/automatic_copyright_updating.php 
//
// 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.
var CopyrightLine = "Copyright &copy; 2008-[[YEAR]]    &nbsp;&nbsp;D.R.S. Design Inc.    &nbsp;&nbsp;All rights Reserved.";
// No edits required below this point.
y = new Date();
year = y.getFullYear();
re = new RegExp("\\[\\[YEAR\\]\\]");
CopyrightLine = CopyrightLine.replace(re,year);
document.write(CopyrightLine);


