// A little javascript to write the year
//Alex Petkov

var today = new Date()
var year = today.getFullYear()
document.write(year);

