//	This will display the Current Year in the copywrite message line.
whatYear = new Date();

	
document.write('DSD Productions, Inc &copy; 2004 - ' + whatYear.getFullYear()  + " All Rights Reserved");


//
