Lightweight get current year script.
<script type="text/javascript"> var d = new Date(); var y = d.getFullYear(); document.write(y); </script>