// IMGDumper.nl V2 Flint - ajax class
// FileVer: 1.0.0
function ajax() {
	if (window.XMLHttpRequest) {
		this.xmlhttp = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	
	this.onreadystatechange = function(onreadystatechangefunction) {
		this.xmlhttp.onreadystatechange = onreadystatechangefunction;
	}
	
	this.send = function(method, url, query) {
		method = method.toUpperCase();
		if (method != 'POST' || method != 'GET') {
			method = 'GET';
		}
		if (method == 'POST') {
			this.xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		}		
		this.xmlhttp.open(method, url, true);
		this.xmlhttp.send(query);
	}

}