			<!--
				function GoUniteSearch() {
					var keyword = document.getElementById("p_u_search").value;
					if(keyword == "") {
						alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
						return;
					}
					if(/['\"|]/i.test(keyword) == true) {
						alert("°Ë»ö¾î¿¡´Â ', \", | ´Â »ç¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù");
						return;
					}
					document.location.href = "/shop/shop.php?mode=search&s_s=1&unity_search=" + keyword;
				}
				
				function GoTopSearch(keyword) {
					document.location.href = "/shop/shop.php?mode=search&s_s=1&unity_search=" + keyword;
				}
				
				function CheckEnterKey() {
					if(event.keyCode == 13) {
						GoUniteSearch();
						event.returnValue = false;
					}
					else {
						event.returnValue = true;
					}
				}
			//-->
