// ********* ********* ********* ********* ********* ********* ********* ********* *********
// Define Events
// call the fscEvent function
// 
// #  PARMS		DATA TYPE	DESCRIPTION
// 1  m			number		2 digit month (1=jan, 2=feb, 3=mar,... 12=dec)
// 2  d			number		2 digit day
// 3  y			number		4 digit year
// 4  text		date		HTML event text
// 5  link		string		URL for popup window
// 6  style		string		CSS class for the event (in-line style is invalid)
// 7  tooltip		string		text for hover over tooltip
// 8  script		string		javascript to execute during onMouseDown
// 9  filter		string		keyword to allow users to filter events
// ********* ********* ********* ********* ********* ********* ********* ********* *********
			
fscEvent( null, null, null, "Dead Date Cell", null, "scEventBlack", null, null, null);

fscEvent( 11, 1, 2009, "<span style='font:bold 10pt verdana;'>First Day</span> of the Month", null, null, null, null, null);

fscEvent( 11, 3, 2009, "New website nearly ready for upload", null, null, null, null, null);

fscEvent( 11, 9, 2009, "Website goes LIVE"<a href="javascript:void(0);" onmouseover="return overlib('This is an ordinary
  popup.');" onmouseout="return nd();">Website goes live and every one is very happy</a>, null, "scEventRed", null, null, null);
	

