
			function findingNemo(id) {
				var request = new HTTPRequest("POST", "/plugin/finding/");
				var	obj = document.getElementById("findingNemoContent" + id);
				request.onSuccess = function() {
					try {
						if (obj != null) obj.innerHTML = this.getText("/response/findingNemoBlock");
					} catch(e) { }
				}
				request.send("idkey="+id);
			}

			function findingNemoPopup(src, title, width, height) {
				var _width	= width;
				var _height = height;
				var _left	= screen.width/2-_width/2;
				var _top	= screen.height/2-_height/2;
				var findingNemo = window.open("about:blank", "findingNemo", "width="+_width+", height="+_height+", left="+_left+",top="+_top+", scrollbars=no,	status=no");
				findingNemo.document.write("<html><title>" + title + "</title>");
				findingNemo.document.write("<meta http-equiv='content-type' content='text/html; charset=utf-8' />");
				findingNemo.document.write("<body style='margin:0px;'>");
				findingNemo.document.write("<a href='javascript:self.close()' title='창닫기'><img src='" + src + "' style='border: 0px; padding: 0; margin:0;' /></a>");
				findingNemo.document.write("</body></html>");
				try {findingNemo.document.close();}
				catch(e) { }
				try {findingNemo.document.focus();}
				catch(e) { }
			}
		