//variables to hold the date objects
var today = new Date();
var tday = today.getDay();
var tdate = today.getDate();
var tmonth = today.getMonth();
var tyear = today.getFullYear();
document.write('<br><p align="center">&copy; '+tyear+' '); 
document.write('All Rights Reserved.</p>'); 