
var year;					// Declaring the year variable
Today = new Date();			// The Date() mathod gets the current date
year = Today.getFullYear(); // The getFullYear() method get the Y2K compliant four digit year

// Please refer to the Netscape Online Javascript Reference for a detailed
// explanation on how the window.open call works. The exact URL is:
// http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm#1202731
copyrightText = "<a href=\"javascript://\" onClick=\"window.open('copyright.html','copyrightWin','width=250,height=320,toolbar=no,menubar=no,personalbar=no,directories=no,status=no,resizable=yes,dependent=yes,scrollbars=yes')\" class=\"footer\">&copy; " + year + " Chemin des Vins</a>";
document.write(copyrightText);

