	function CShortcutList() {
		this.iShortcutListPerPageCount = 10;
		this.sShortcutListNextUrl = "";
		this.bShortcutListRequested = false;
		this.sShortcutListNextUrl = "";
		this.reqUrl = "/main.do?action=ajaxQuickLinkList";
		this.oComm = null;
		this.fnCallBack = null;
	}

	CShortcutList.prototype.initialize = function(callback) {
			this.oComm = Request.createRequest();
			if (callback != undefined)
				this.fnCallBack = callback;
	};

	CShortcutList.prototype.onScrollShortcutList = function(obj, opt) {
		var oComm = this.oComm;
		var fnCallBack = this.fnCallBack;
		if (this.sShortcutListNextUrl != "end") {
				if (this.sShortcutListNextUrl != "")
					this.reqUrl = this.sShortcutListNextUrl;
				if (obj.scrollTop <= (obj.scrollHeight - parseInt(obj.style.height) + 1) || (opt != undefined && opt == "force")) {
					if (oComm.readyState == 0 || oComm.readyState == 4) {
						oComm.open("GET", this.reqUrl,true);
						oComm.onreadystatechange = function() {
							if (oComm.readyState == 4) {
								if (oComm.status == 200) {
									fnCallBack(oComm.responseText);
								}
							}
						};
						oComm.send(null);
					} else {
						//alert("ÀÌÀü ¿äÃ» ÀÛ¾÷ÀÌ ÁøÇàÁßÀÔ´Ï´Ù. Àá½Ã¸¸ ±â´Ù·Á ÁÖ¼¼¿ä");
					}
				}
			}
	};