function loadingQuery() {

	var url = "plugin/loading.php";

	xmlHttp.open("GET", url, true);

	xmlHttp.onreadystatechange = loadingResponse;

	xmlHttp.send(null);

}
