	function sendReq(action, arg) {
		http.open('get', 'utils/ajax2.php?action=' + action + '&arg=' + arg);
		http.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
		http.onreadystatechange = handleResponse;
		http.send(null);
	}
