function creatXMLLoad(url) {
	var http = null;

	if (window.XMLHttpRequest) {
  		 http = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
  		 http = new ActiveXObject("Microsoft.XMLHTTP");
	}

	if (http != null) {
   		http.open("GET", url, false);

   		http.send(null);
		return http.responseText;
	}
}

