	
	/************************** Edit the Following Only *****************************/
	
	// the color all cells change to when the mouse rolls over it
	var on='#FFFFFF';
	
	// the color the date cell changes to when the mouse rolls off 
	var dateoff='#E2CC67';
	
	// the color the today date cell changes to when the mouse rolls off 
	var todayoff = '#771C14';
	
	// the color the event highlighted cell changes to when the mouse rolls off 
	var eventoff = '#CDB75E';
	
	/***************************** Edit the Above Only ********************************/
	
	
	
	/****************************** Open a new window ********************************/
		
	function open_window(url) {
		var NEW_WIN = null;
		NEW_WIN = window.open ("", "EventViewer","toolbar=no,width=500,height=400,directories=no,status=no,scrollbars=yes,resize=no,menubar=no");
		NEW_WIN.location.href = url;
	}
	
	/****************************** Open a new window ********************************/
		