function processAjax(url, targetDiv)
{
	if (window.XMLHttpRequest) 
	{ // Non-IE browsers
		try
		{
			req = new XMLHttpRequest();
			req.open("GET", url, false);
			req.send(null);
		} catch(e)
		{
			req = new ActiveXObject("Microsoft.XMLHTTP");
			if (req)
			{
				req.open("GET", url, false);
				req.send();
			}
		}
		
	} else
	{ // IE
		req = new ActiveXObject("Microsoft.XMLHTTP");
		if (req)
		{
			req.open("GET", url, false);
			req.send();
		}
	}
	
	document.getElementById(targetDiv).innerHTML = req.responseText;
}
