Javascript Date Format_MDY()
MDY()
Date.prototype.Format_MDY = function () { return this.getMonth() + 1 + "/" + this.getDate() + "/" + this.getFullYear(); };