
			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(url, name) {
				try {
					var left = Math.floor((screen.availWidth - 250) / 2);
					var top = Math.floor((screen.availHeight - 100) / 2);
					try { findingNemoImagePopup.close(); } catch(e) { }
					findingNemoImagePopup = window.open("", "", "width=250, height=100, left=" + left + ", top=" + top + ", scrollbars=no, resizable=yes");
					findingNemoImagePopup.document.open("text/html", "replace");
					findingNemoImagePopup.document.write(
						'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">\r\n' +
						'<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko">\r\n' +
						'	<head>\r\n' +
						'		<meta http-equiv="content-type" content="text/html; charset=utf-8"/>\r\n' +
						'		<title>' + name + ' 어린이 </title>\r\n' +
						'		<style type="text/css">\r\n' +
						'			html, body { width: 100%; height: 100%; margin: 0; padding: 0; cursor: pointer; text-align: center; line-height: 0; }\r\n' +
						'			#Container { width: 100%; height: 100%; overflow: auto; }\r\n' +
						'			#NemoImage { text-align: center; }\r\n' +
						'			#BottomInfo {line-height:130%; padding:4px 0 2px 0;border-top:1px solid #ffffff;background-color:#40707B;color:#ffffff;text-align:center;font-size:9pt; }\r\n' +
						'		</style>\r\n' +
						'		<script type="text/javascript">\r\n' +
						((navigator.userAgent.indexOf("Safari") > -1) ?
						'			function resizeImage() {\r\n' :
						'				window.onload = function() {\r\n') +
						'				var container = document.getElementById("Container");\r\n' +
						'				var image = document.getElementById("Image");\r\n' +
						'				var resizeWidth = 0, resizeHeight = 0, positionTop = 0, positionLeft = 0;\r\n' +
						'				var offsetTop = window.screenTop || window.screenY;\r\n' +
						'				var offsetLeft = window.screenLeft || window.screenX;\r\n' +
						'				if(navigator.userAgent.indexOf("Safari") > -1) {\r\n' +
						'					var width = Math.min(image.width + 50, screen.availWidth - 100);\r\n' +
						'					var height = Math.min(image.height + 50, screen.availHeight - 100);\r\n' +
						'					window.moveTo((screen.availWidth - width) / 2, (screen.availHeight - height) / 2);\r\n' +
						'					window.resizeTo(width, height);\r\n' +
						'					return;\r\n' +
						'				}\r\n' +
						'				if(container.scrollWidth > container.offsetWidth) {\r\n' +
						'					resizeWidth += container.scrollWidth - container.offsetWidth;\r\n' +
						'					if(container.offsetWidth + resizeWidth + 100 > screen.availWidth) {\r\n' +
						'						resizeWidth = screen.availWidth - container.offsetWidth - 100;\r\n' +
						'						positionLeft = -resizeWidth / 2;\r\n' +
						'						resizeHeight += 20;\r\n' +
						'					}\r\n' +
						'					else {\r\n' +
						'						positionLeft = -resizeWidth / 2;\r\n' +
						'					}\r\n' +
						'				}\r\n' +
						'				if(container.scrollHeight > container.offsetHeight) {\r\n' +
						'					resizeHeight += container.scrollHeight - container.offsetHeight;\r\n' +
						'					if(container.offsetHeight + resizeHeight + 100 > screen.availHeight - 50) {\r\n' +
						'						resizeHeight = screen.availHeight - container.offsetHeight - 100 - 40;\r\n' +
						'						positionTop = -resizeHeight / 2;\r\n' +
						'						resizeWidth += 20;\r\n' +
						'					}\r\n' +
						'					else {\r\n' +
						'						positionTop = -resizeHeight / 2;\r\n' +
						'					}\r\n' +
						'				}\r\n' +
						'				if(resizeWidth == 0 && resizeHeight == 0)\r\n' +
						'					image.style.marginTop = ((container.offsetHeight - image.height) / 2) + "px";\r\n' +
						'				window.moveBy(positionLeft, positionTop - 35);\r\n' +
						'				window.resizeBy(resizeWidth, resizeHeight);\r\n' +
						'			}\r\n' +
						'		</script>\r\n' +
						'	</head>\r\n' +
						'	<body onclick="window.close();">\r\n' +
						'		<div id="Container" title="' + name + ' 실종 어린이">' +
						((navigator.userAgent.indexOf("Safari") > -1) ?
						'			<div id="NemoImage"><img id="Image" src="' + url + '" alt="' + name + ' 어린이" onload="resizeImage()"/></div>' :
						'			<div id="NemoImage"><img id="Image" src="' + url + '" alt="' + name + ' 어린이"/></div>') +
						'			<div id="BottomInfo">제보전화 : 02) 777-0182</div>' +
						'		</div>' +
						'	</body>\r\n' +
						'</html>'
					);
					findingNemoImagePopup.document.close();
					if(findingNemoImagePopup.document.focus)
						findingNemoImagePopup.document.focus();
				}
				catch(e) {
					window.open(url, "_blank");
				}

			}
		