function ajaxFeed(ajaxURL,ajaxFunction)
{
	var xmlHttp;

	try
	{ 
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				alert("Your browser does not support AJAX!");
				return false;
			}
		}
	}

	xmlHttp.onreadystatechange=function()
	{
		// 0	The request is not initialized
		// 1	The request has been set up
		// 2	The request has been sent
		// 3	The request is in process
		// 4	The request is complete
	
		if(xmlHttp.readyState==4)
		{
			// Get the data from the server's response
			json=eval('('+xmlHttp.responseText+')');
			ajaxFunction(json);
		}
	}

	xmlHttp.open('get',ajaxURL,true);

	//xmlHttp.open(action,url,true);
	xmlHttp.send(null);
}