function ajaxSend(ajaxMethod, ajaxUrl, ajaxDiv)
{ 
	function ajaxObject()
	{ 
		if (document.all && !window.opera)
		{
			obj = new ActiveXObject("Microsoft.XMLHTTP");
		}
		else
		{ 
			obj = new XMLHttpRequest();
		}
	return obj;
	}
	
	var ajaxHttp = ajaxObject(); 
	ajaxHttp.open(ajaxMethod, ajaxUrl, true); 
	ajaxHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	ajaxHttp.onreadystatechange = function()
	{ 
		if(ajaxHttp.readyState == 4)
		{ 
			var ajaxResponse = ajaxHttp.responseText; 
			document.getElementById(ajaxDiv).innerHTML = ajaxResponse;
		}
	}
	ajaxHttp.send(null);
}
