function loadCalendar(month, date, type, theme, location){
	myCalendar = new Request.HTML({'url' : 'ajax.calendar.inc.php', 'update' : 'calendarBox' }).get({'date' : date, 'month' : month, 'type' : type, 'theme' : theme, 'location' : location});
}

window.addEvent('domready', function(){
	loadCalendar('', $('cDate').get('html'), $('cType').get('html'), $('cTheme').get('html'), $('cLocation').get('html'));
});
