I have on the footer of my site - Copyright "site name" 2008. I forgot to change it when we entered 2009. I there a small piece of code I can insert to make the year change automatically? thanks.
or use this <script type="text/javascript"> now = new Date theYear=now.getYear() if (theYear < 1900) theYear=theYear+1900 document.write(theYear) </script> Code (markup):