﻿Sys.CultureInfo.prototype._getAbbrMonthIndex = function(value){ // Ajax script error thrown in FireFox - Date Format
	if (!this._upperAbbrMonths){
		this._upperAbbrMonths = this._toUpperArray(this.dateTimeFormat.AbbreviatedMonthNames);
	}
	return Array.indexOf(this._upperAbbrMonths, this._toUpper(value));
};

if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
