 SpecialDay=7;		// 0=none, 1=Sunday, 2=Monday, . . . 7=Saturday
 DefaultFormat = "<font size=1>|</font>"; // font properties for events // for compatibility; set to "layer" to simplify formatting. May also use "layer"
 ColorBackground="#F5F5F5";
 ColorSpecialDay = "#999999";
 ColorToday = "#339933";
 ColorEvent = "#0099CC";
 showAltDate = true;  	// add display of alternate date using results from user supplied "getAltMonth(dy, mo, yr, last)" and "getAltDate(dy, mo, yr)" functions
 showHolidays = true; 	// 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 = true; 		// enable event images (might disable for print version)
 showLinks = true; 		// enable event hyperlinks (might disable for print version)
// msgBoxColor = "#ffcc99";
 navColor = "#EAEBEF";	// color for navigation area in which you go from month to month (top and bottom bordercolors)
// imageAlign = "left"; 		// default event image alignment
 imageScale = 100;		// percent scale factor for images
// altAlign = true; 		// alternate left/right alignment of event images on same date for readability
	
ExportPage = "export.htm"; 		// name of html page for displaying event text for export
PrintPage = "printer-friendly.htm"; 		// name of html page for printer-friendly format

// all format codes must have "|" to separate before and after tags
 DateFontSize=1;
// AltDateFormat = "<font color=#999999 size=2>|</font>";
 MonthFormat = "<font size=3><b>|</b></font>";
// AltMonthFormat = "<br><font color=#999999 size=" + DateFontSize/2 + ">|</font>";
 HolidayFormat = "<font color=#FF9999 size=2><b><center>|</center></b></font>";
// AltHolyFormat = "<font  size=2><b><center>|</center></b></font>";
// LayerFormat = "<font size=1>|</font>";

// 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>";

// the format is: [year][month]
FirstMonth = 200809; 	// start calendar in month where sample data starts for "jump to" target in samples
//LastMonth = 200712;		// I (Jamal) added this here and it works! HA!

// map alternate date and holiday functions to user supplied functions here
altDateStyle = 2;
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); }