
function URLRequest (url) {
	this.url = url;
}

Class(URLRequest);

URLRequest.prototype.contentType = new String();
URLRequest.prototype.data = new Object();
URLRequest.prototype.method = "GET";
URLRequest.prototype.requestHeaders = new Array();
URLRequest.prototype.url = new String();
