// SpecialDay=1;		// 0=none, 1=Sunday, 2=Monday, . . . 7=Saturday
 ColorBackground="#ffffff";
 ColorSpecialDay = "#5a7c92";
 ColorToday = "#5a7c92";
 ColorEvent = "#5a7c92";
 var showAltDate = false;  	// add display of alternate date using results from user supplied "getAltMonth(dy, mo, yr, last)" and "getAltDate(dy, mo, yr)" functions
 showHolidays = false; 	// add display of holidays using result from user supplied "holidays(dy, mo, yr)" function
 showAltHoly = false; 		// add display of alternate holidays using result from user supplied "getAltHoly(dy, mo, yr)" function
 showMsgBox = false; 		// span empty cells (before 1st day and after last) for messageBox use
 showMini = false; 		// add minimonth display of prior and next months if first and/or last boxes are available 
 showNav = true; 		// enable month navigation (might disable for print version)
 showImages = false; 		// enable event images (might disable for print version)
 showLinks = true; 		// enable event hyperlinks (might disable for print version)
 msgBoxColor = "#ffffff";
 navColor = "#b99874";
 imageAlign = "left"; 		// default event image alignment
 imageScale = 20;		// percent scale factor for images
 altAlign = true; 		// alternate left/right alignment of event images on same date for readability
 DefaultFormat = "custom"; 	// for compatibility; set to "layer" to simplify formatting
 ExportPage = ""; 		// name of html page for displaying event text for export
 PrintPage = ""; 		// name of html page for printer-friendly format

// all format codes must have "|" to separate before and after tags
 //DateFontSize=11px;
 AltDateFormat = "<span color=#999999 style='font-size:11px'>|</span>";
 MonthFormat = "<span style='font-size:11px'><b>|</b></span>";
 AltMonthFormat = "<br><span color=#999999 style='font-size:10px'>|</span>";
 HolidayFormat = "<span color=#999999 style='font-size:11px'><b><center>|</center></b></span>";
 AltHolyFormat = "<span  size=2><b><center>|</center></b></span>";
 LayerFormat = "<span style='font-size:11px'>|</span>";

// msgBox message (it will only be shown IF it finds enough space)
//defaultMsgBox = "Note: The information here may not be current; please confirm dates and times.<p>";

FirstMonth = 200609; 	// start calendar in month where sample data starts for "jump to" target in samples

// map alternate date and holiday functions to user supplied functions here
altDateStyle = 1;
altMonthStyle = 1;
function getAltMonth(first, month, year, last) {
	var tmp = my_date(first, month, year, altMonthStyle) + "  " + my_date(last, month, year, altMonthStyle);
	return tmp;
}
function getAltDate(day, month, year) { return my_date(day, month, year, altDateStyle); }
function holidays(day, month, year) { return my_holiday(day, month, year); }
function getAltHoly(day, month, year) { return my_alt_holiday(day, month, year); }