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 = + year;
document.write(copyrightText);

