	var inputValue = 0;
	var NS4 = (document.layers);
	var IE4 = (document.all);
	var win = window;
	var n = 0;
 
	function sitemap_find(searchValue) {
		var textValue, i, findDivision;
		if (!searchValue) {
			alert("검색어를 입력하세요!");
			document.sitemapSearch.searchValue.focus();
			return false;
		}
 
		if (NS4) {
			if (!win.find(searchValue))
				while (win.find(searchValue, false, true)) n++;
			else n++;
			if (n == 0) alert("해당 문자열을 찾을 수 없습니다!");
		}
 
		if (IE4) {
			textValue = win.document.body.createTextRange();
 
			for (i = 0; i <= n && (findDivision = textValue.findText(searchValue)) != false; i++) {
				textValue.moveStart("character", 1);
				textValue.moveEnd("textedit");
				try {
					textValue.moveStart("character", -1);
					textValue.findText(searchValue);
					textValue.select();
					if (i < n) {
						textValue.moveStart("character", 1);
						textValue.moveEnd("textedit");
						continue;
					}
					textValue.scrollIntoView();
					n++;
				}
				catch (e) {
					i--;
					textValue.moveStart("character", 1);
					textValue.moveEnd("textedit");
					continue;
				}
				break;
			}
 
			if (findDivision) {
			}
			else {
				if (n > 0) {
					n = 0;
					sitemap_find(searchValue);
				}
				else alert("해당 문자열을 찾을 수 없습니다!");
			}
		}
		return false;
	}

