Date.prototype.ConvertToLocal = function() {
    var d = new Date();
    this.setUTCFullYear(this.getFullYear(), this.getMonth(), this.getDate());
    this.setUTCHours(this.getHours(), this.getMinutes(), this.getSeconds(), this.getMilliseconds());
}

