Javascript Date addYear(count)
Date.prototype.addYear = function(count) { this.setYear(this.getFullYear() + count); };