function CalChMonth(month,year)
{
	var xmlHttp;
	try{ xmlHttp=new XMLHttpRequest(); }
	catch (e)
    {
		try{ xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
		catch (e)
		{
			try{ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
			catch (e)
			{
				alert("Uw browser ondersteunt geen AJAX, u kan deze functie niet gebruiken.");
				return false;
			}
		}
    }
    xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			document.getElementById("calendarWrapper").innerHTML = xmlHttp.responseText;
	 	}
	 	else
	 	{
		 	document.getElementById("calLoading").style.display = 'inline';
	 	}
	}
    xmlHttp.open("GET","/inc/modules/miniCalendar.inc.php?year="+year+"&month="+month,true);
    xmlHttp.send(null);
}

