Javascript Date addMonth(count)
Date.prototype.addMonth = function(count) { this.setMonth(this.getMonth() + count); };