
			function findingNemo(id) {
				var request = new HTTPRequest("POST", "/blog/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, nemoNumber, name, width, height) {
				var _width	= "";
				var _height = "";
				var _left	= "";
				var _top	= "";
				var findingNemoWin = null;
				if ( findingNemoWin != null ) findingNemoWin.close();
				if(!nemoNumber){
					_width	= width;
					_height = height;
					_left	= screen.width/2-_width/2;
					_top	= (screen.height/2-_height/2)-70;
					findingNemoWin = window.open("about:blank", "findingNemo", "width="+_width+", height="+_height+", left="+_left+",top="+_top+", scrollbars=no,	status=no, resizable=no");
					findingNemoWin.document.write("<html><title>" + name + " 실종 어린이</title>");
					findingNemoWin.document.write("<meta http-equiv='content-type' content='text/html; charset=utf-8' />");
					findingNemoWin.document.write("<body style='margin:0px;'>");
					findingNemoWin.document.write("<a href='javascript:self.close()' title='창닫기'><img src='" + src + "' style='border: 0px; padding: 0; margin:0;' /></a>");
					findingNemoWin.document.write("</body></html>");
				}else{
					_width  = 516;
					_height = 500;
					_left	= screen.width/2-_width/2;
					_top	= (screen.height/2-_height/2)-70;
					findingNemoWin = window.open("/blog/plugin/findingNemoShow/?ambno="+nemoNumber+"&name="+encodeURIComponent(name), "findingNemo", "width="+_width+", height="+_height+", left="+_left+",top="+_top+", scrollbars=yes, status=no, resizable=yes");				
				}
				findingNemoWin.focus();

			}
		