var mycal = new Calendar("mycal", new Date());
mycal.eventDates = new Array(
"2008/10/31", 
"2008/11/03", "2008/11/04", "2008/11/06", "2008/11/07", "2008/11/13", "2008/11/15", "2008/11/19",
"2009/08/28",
"2009/09/02",
"2010/01/23"
);
mycal.onclickevent = function(eventDate) { var str = eventDate.replace(/\//g, "_"); document.location = "mhblog_" + str + ".html" };
mycal.ondatechange = function(eventDate) { }
renderCalendar(mycal);
