PopupCalendarProperties = function (){
		
	// maximum limit of selectable day from system date
	this.maxLimitDays = 355;
	
	// maximum limit of selectable month from system date
	this.maxLimitMonths = null;
	
	// shows holiday
	// true:shows false:not shows
	this.isDispHoliday = true;
	
	// locale of the popup calendar
	// "J":Japanese "E":English
	this.locale = "E";
	
	// length of the popup calendar that shows up
	this.calendarLength = 3;
	
	// non select text
	this.zero_value = true;
	
	return this;
};
