function calendar_regen(x, y,z){
	$.post('ajax/aj_calendar_gen.php',
		{ action: "reload", cur: x, show: y, year:z },
		function(data)
		{
			/*alert(data);*/
			$("#calendar_box").html(data);
		})
}


