
function makeHTTPrequest( what, func){
this.what = what;
this.func = func;
this.method = "GET";
this.sync = true;
this.stuff = null;
this.xmlhttp = (window.XMLHttpRequest) ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
this.doRequest =function(){
		this.xmlhttp.open(this.method,this.what, this.sync);
		this.xmlhttp.onreadystatechange=this.func;
		this.xmlhttp.send(this.stuff);
				
	
}

}
