Javascript Date addMilliseconds(count)
Date.prototype.addMilliseconds = function(count) { this.setMilliseconds(this.getMilliseconds() + count); };