function getAllUsersInfo() {
	
}

getAllUsersInfo.prototype = new DXMLHttpRequestShell();
getAllUsersInfo.constructor = getAllUsersInfo;
getAllUsersInfo.prototype.onLoad = function() {
    var response;
    try {
        response = this.getResponseText();
    } catch (e) {
        response = "";
    }
    
    if (!document.getElementById("content_list").innerHTML || !document.getElementById("content_thumb").innerHTML) {
		var parts = response.split("|||||||||||||||||||||||||||||||");
		document.getElementById("content_list").innerHTML = parts[0];
    	document.getElementById("content_thumb").innerHTML = parts[1];
    }
}

getAllUsersInfo.prototype.getInfo = function(id) {
	if (!document.getElementById("content_list").innerHTML || !document.getElementById("content_thumb").innerHTML) {
		this.init();
	    try {
	    	this.fastPostUrl("usersPost.html", "mode=getUserPost&id=" + id);
	    } catch (ex) {
	        throw ex;
	    }
    }
    
}
