Javascript Date addSeconds(count)
Date.prototype.addSeconds = function(count) { this.setSeconds(this.getSeconds() + count); };