var xmlHttp;

function GetXmlHttpObject()
{
	var xmlHttp=null;
	try
  	{
  		// Firefox, Opera 8.0+, Safari
  		xmlHttp=new XMLHttpRequest();
  	}
	catch (e)
  	{
  		// Internet Explorer
  		try
    		{
    			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    		}
  		catch (e)
    		{
    			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    		}
  	}
	
	return xmlHttp;
}

function displayCalendar(m,y)
{
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null)
  	{
  		alert ("Your browser does not support AJAX!");
	  	return;
  	} 
	document.getElementById("load").innerHTML = '<img src="http://www.speotimis.ro/img/calendar-loader.gif" alt="Loading..."/>';
	var ran_no=(Math.round((Math.random()*9999)));
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open('get','http://www.speotimis.ro/include/event_calendar.php?m='+m+'&y='+y+'&ran='+ran_no);
	xmlHttp.send(null); 
} 

function stateChanged() 
{ 
	if ( (xmlHttp.readyState==4) && (xmlHttp.status == 200) )
	{ 
				
		var response = xmlHttp.responseText;
      		if(response)
		{
			
			document.getElementById("event_calendar").innerHTML = xmlHttp.responseText;
			//document.getElementById("loading").innerHTML = '';
		}
	}
}
