RemoteHandler.prototype.myCommand;
RemoteHandler.prototype.myAsync;

function RemoteHandler(command, async){
	myCommand = command;
	myAsync = async;
}

RemoteHandler.prototype.handle = function() {
    var xmlUtil = new XMLUtil();
    var http = xmlUtil.getXMLHTTPObject();
    
    http.open('GET', myCommand, myAsync);
		http.send(null);
		
		if (http.readyState == xmlUtil.COMPLETE && http.status == 200) {
				return http;
		} 
}

