HTTP = function() {
	if (typeof window.ActiveXObject != 'undefined' ) {
		this.http = new ActiveXObject("Microsoft.XMLHTTP") 
	} else {
		this.http = new XMLHttpRequest() 
	}

this.request = function(url) {
	this.http.open("get", url, false)
	this.http.send('')
}
this.async_request = function(url) {
	this.http.open("get", url, true)
	this.http.send('')
}

}

