function ajaxFunction(){
	var xmlHttp;
	try{
		xmlHttp = new XMLHttpRequest();
	}
	catch (e){
		try{
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e){
			try{
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e){
				return false;
			}
		}
	}
	return xmlHttp;
}

function getRequest(method, url){
	var ajaxObject;
	ajaxObject = ajaxFunction();
	
	if(ajaxObject){
		ajaxObject.open("GET", "/data.php?act=" + method + "&url=" + url, true);
		ajaxObject.send(null);

		ajaxObject.onreadystatechange = function(){
			if(ajaxObject.readyState == 4){
				document.getElementById(method).innerHTML = ajaxObject.responseText;
			}
		}
	}else{
		alert("Sorry, your browser supports neither XMLHttpRequest(), Msxml2.XMLHTTP, nor Microsoft.XMLHTTP.\r\n\r\nAs a result, this page will not work.");
	}
}