<!--

// Copyright Append Script
// This script will append the copyright date in a webpage when called.
// Calling this script in a webpage will remove the problem of updating
// copyright dates on outdated webpages
// written by Omesh Chowdhury for www.omeshc.com
// (c) 1998 - 2004 OmeshC

var d = new Date () //set d to today's date (as set on the server)

var y = d.getFullYear() //set y to the year as stored in d

document.write("<a href=\"/dawg/index.html\">© 1998 - "+y+" OmeshC</a>") //print the copyright string

-->


