function getAJAX( getURL, returnFunction )
{
	var ajaxObj = null;
	try
	{
		// Firefox, Opera 8.0+, Safari
		ajaxObj = new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			ajaxObj = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				ajaxObj = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				ajaxObj = null;
			}
		}
	}
	
	ajaxObj.open("GET", getURL, true);
	ajaxObj.onreadystatechange = 
	function xmlhttpChange()
	{
		if (ajaxObj.readyState == 4)
		{
			if (ajaxObj.status == 200)
			{
				returnFunction( ajaxObj.responseText);
			}
		}
	}

	ajaxObj.send(null);
}
