var caldef1 =
{
	firstday : 0, // First day of the week: 0 means Sunday, 1 means Monday, etc.
	dtype : 'yyyy-MM-dd', // Output date format MM-month, dd-date, yyyy-year,
	                      // HH-hours, mm-minutes, ss-seconds
	width : 250, // Width of the calendar table
	windoww : 300, // Width of the calendar window
	windowh : 170, // Height of the calendar window
	border_width : 0, // Border of the table
	border_color : '#0000d3', // Color of the border
	dn_css : 'clsDayName', // CSS for week day names
	cd_css : 'clsCurrentDay',
	wd_css : 'clsWorkDay', // CSS for work days (this month)
	we_css : 'clsWeekEnd', // CSS for weekend days (this month)
	wdom_css : 'clsWorkDayOtherMonth', // CSS for work days (other month)
	weom_css : 'clsWeekEndOtherMonth', // CSS for weekend days (other month)
	headerstyle :
	{
		type : 'buttons', // Type of the header may be:
		// 'buttons' or 'comboboxes'
		css : 'clsDayName', // CSS for header
		imgnextm : 'images/next.gif', // Image for next month button.
		imgprevm : 'images/prev.gif', // Image for previous month button.
		imgnexty : 'images/next_year.gif', // Image for next year button.
		imgprevy : 'images/prev_year.gif' // Image for previous year button.
	},
	// Array with month names
monthnames : ["一月", "二月", "三月", "四月", "五月", "六月",
	"七月", "八月", "九月", "十月", "十一月", "十二月"],
	// Array with week day names
	daynames : ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
}; 
var caldef2 =
{
	firstday : 0, // First day of the week: 0 means Sunday, 1 means Monday, etc.
	dtype : 'yyyy-MM-dd', // Output date format MM-month, dd-date, yyyy-year,
	                      // HH-hours, mm-minutes, ss-seconds
	width : 250, // Width of the calendar table
	windoww : 300, // Width of the calendar window
	windowh : 170, // Height of the calendar window
	border_width : 0, // Border of the table
	border_color : '#0000d3', // Color of the border
	dn_css : 'clsDayName', // CSS for week day names
	cd_css : 'clsCurrentDay',
	wd_css : 'clsWorkDay', // CSS for work days (this month)
	we_css : 'clsWeekEnd', // CSS for weekend days (this month)
	wdom_css : 'clsWorkDayOtherMonth', // CSS for work days (other month)
	weom_css : 'clsWeekEndOtherMonth', // CSS for weekend days (other month)
	headerstyle :
	{
		type : 'buttons', // Type of the header may be:
		// 'buttons' or 'comboboxes'
		css : 'clsDayName', // CSS for header
		imgnextm : '../images/next.gif', // Image for next month button.
		imgprevm : '../images/prev.gif', // Image for previous month button.
		imgnexty : '../images/next_year.gif', // Image for next year button.
		imgprevy : '../images/prev_year.gif' // Image for previous year button.
	},
	// Array with month names
	monthnames : ["一月", "二月", "三月", "四月", "五月", "六月",
	"七月", "八月", "九月", "十月", "十一月", "十二月"],
	// Array with week day names
	daynames : ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
}; 