FirstMonth = 200710;
 SpecialDay=1;		
 ColorBackground="#9EC4D4";
 ColorSpecialDay = "red";
 ColorToday = "green";
 ColorEvent = "blue";
 var showAltDate = false;  	
 showHolidays = false; 
 showAltHoly = false; 
 showMsgBox = false; 	
 showMini = true; 	
 showNav = true; 	
 showImages = true; 	
 showLinks = true; 	
 msgBoxColor = "#ffcc99";
 navColor = "#9EC4D4";
 imageAlign = "left"; 
 imageScale = 100;	
 altAlign = true; 	
 DefaultFormat = "custom"; 
 ExportPage = ""; 	
 PrintPage = ""; 	

 DateFontSize=5;
 AltDateFormat = "<font color=#999999 size=2>|</font>";
 MonthFormat = "<font size=" + DateFontSize + "><b>|</b></font>";
 AltMonthFormat = "<br><font color=#999999 size=" + DateFontSize/2 + ">|</font>";
 HolidayFormat = "<font color=#999999 size=2><b><center>|</center></b></font>";
 AltHolyFormat = "<font  size=2><b><center>|</center></b></font>";
 LayerFormat = "<font size=2>|</font>";

// msgBox message (it will only be shown IF it finds enough space)
defaultMsgBox = "";

// 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); }
