function wp_assync_load_calendar($year, $month)
{
	try{
		new Ajax.Updater('blog_calendar','/side-calendar.php', {
			method:'post',
			parameters: {y:$year, m:$month}
		});
	}
	catch(e)
	{
		alert(e);
	}
	return false;
}
