	<!--
		var cssSel = {
			cssArrayName : "cssSel",
			selectImage : "/img/btn/select.gif",
			selectwidth : "17",
			selectPad : "selectPad",
			selectBor : "selectBor",
			selectBoxSelectedAreaFocus : "selectBoxSelectedAreaFocus",
			selectBoxSelectedArea : "selectBoxSelectedArea",
			selectBoxOptionInnerLayer : "selectBoxOptionInnerLayer",
			selectBoxOption : "selectBoxOption",
			selectBoxOptionOver : "selectBoxOptionOver"
		};
		
		//ÀÌ¹ÌÁö·Î µÈ ¼¿·ºÆ® ½ÃÀÛ
		function setMousePosition(thisValue) {
			var positionValue = thisValue;
			mousePosition = positionValue;
		}


		function selectBoxFocus(thisId, cssArray) {
			var objId = thisId;
			var obj = document.getElementById(objId + "selectBoxSelectedValue");
			obj.className = cssArray.selectBoxSelectedAreaFocus;
			obj.focus();
		}


		function hideOptionLayer(thisId) {
			var objId = thisId;
			var optionLayer = document.getElementById(objId+"selectBoxOptionLayer");
			if (optionLayer) optionLayer.style.display = "none";
		}


		function selectThisValue(thisId,thisIndex,thisValue,thisString, cssArray) {
			var objId = thisId;
			var nowIndex = thisIndex;
			var valueString = thisString;
			var sourceObj = document.getElementById(objId);
			var nowSelectedValue = document.getElementById(objId+"SelectBoxOptionValue"+nowIndex).value;
			hideOptionLayer(objId);
			if (sourceObj) sourceObj.value = nowSelectedValue;
			settingValue(objId,valueString);
			selectBoxFocus(objId, cssArray);
			if (sourceObj.onchange) sourceObj.onchange();
		}


		function settingValue(thisId,thisString) {
			var objId = thisId;
			var valueString = thisString;
			var selectedArea = document.getElementById(objId+"selectBoxSelectedValue");
			if (selectedArea) selectedArea.innerHTML = valueString.replace("&","&amp;");
		}


		function selectBoxBlur(thisId, cssArray) {
			var objId = thisId;
			var obj = document.getElementById(objId + "selectBoxSelectedValue");
			obj.className = cssArray.selectBoxSelectedArea;
		}


		function viewOptionLayer(thisId) {
			var objId = thisId;
			var optionLayer = document.getElementById(objId+"selectBoxOptionLayer");
			if (optionLayer) optionLayer.style.display = "";
			nowOpenedSelectBox = objId;
			setMousePosition("inBox");
		}


		function makeSelectBox(thisId, cssArray) {
			var downArrowSrc = cssArray.selectImage;		//¿À¸¥ÂÊ È­»ìÇ¥ÀÌ¹ÌÁö
			var downArrowSrcWidth = cssArray.selectwidth;	//¿À¸¥ÂÊ È­»ìÇ¥ÀÌ¹ÌÁö width
			var selectPad = cssArray.selectPad;
			var optionHeight = 21;  //option ÇÏ³ªÀÇ ³ôÀÌ
			var optionMaxNum = 10; // ÇÑ¹ø¿¡ º¸¿©Áö´Â optionÀÇ °¹¼ö
			var optionInnerLayerHeight = "";
			var optionInnerLayerWidth = "";
			var objId = thisId;
			var obj = document.getElementById(objId);
			//var optionHeight = parseInt(obj.style.height);
			var selectBoxWidth = parseInt(obj.style.width);
			var selectBoxHeight = parseInt(obj.style.height);
			
			if (obj.options.length > optionMaxNum) 
			{
				optionInnerLayerWidth  = (selectBoxWidth + 5 - 16);
				optionInnerLayerHeight = "height:"+ (optionHeight * optionMaxNum) + "px";
			}else
			{
				optionInnerLayerWidth  = "100%";
			}

/* ¸®½ºÆ® ¹Ú½º */
			newSelect  = "<table id='" + objId + "selectBoxOptionLayer' cellpadding='0' cellspacing='0' border='0' style='position:absolute;z-index:100;display:none; border:1px solid #d3d3d3;' onMouseOver=\"viewOptionLayer('"+ objId + "')\" onMouseOut=\"setMousePosition('out')\">";
			newSelect += "	<tr>";
			newSelect += "		<td height='" + (selectBoxHeight + 0) + "' style='cursor:hand;' onClick=\"hideOptionLayer('"+ objId + "')\"></td>";
			newSelect += "	</tr>";
			newSelect += "	<tr>";
			newSelect += "		<td class='"+cssArray.selectPad+"'>";
			newSelect += "		<div id='"+ objId + "SelectBoxOptionArea' class='"+cssArray.selectBoxOptionInnerLayer+"' style='width:" + (selectBoxWidth) + "px;" + optionInnerLayerHeight + "'>\n";
			newSelect += "		<table cellpadding='0' cellspacing='0' border='0' width='" + optionInnerLayerWidth + "' style='table-layout:fixed;word-break:break-all;'>";
	for (var i=0 ; i < obj.options.length ; i++) {

		var nowValue = obj.options[i].value;
		var nowText = obj.options[i].text;
		if (nowValue != null && nowValue != "") {	// value°¡ ¾ø°Å³ª ºó°ªÀÌ¸é ÀÎµ¦½º·Î Ãë±ÞÇÏ°í »Ñ·ÁÁÖÁö ¾Ê°ÔÇÔ.
			newSelect += "			<tr>";
			newSelect += "				<td height='" + optionHeight + "' class='"+cssArray.selectBoxOption+"' onMouseOver=\"this.className='"+cssArray.selectBoxOptionOver+"'\" onMouseOut=\"this.className='"+cssArray.selectBoxOption+"'\" onClick=\"selectThisValue('"+ objId + "'," + i + ",'" + nowValue + "','" + nowText + "', "+cssArray.cssArrayName+")\" style='cursor:hand;'>" + nowText + "</td>";
			newSelect += "				<input type='hidden' id='"+ objId + "SelectBoxOptionValue" + i + "' value='" + nowValue + "'>";
			newSelect += "			</tr>";
		}
	}
			newSelect += "		</table>";
			newSelect += "		</div>";
			newSelect += "		</td>";
			newSelect += "	</tr>";
			newSelect += "</table>";
/* Select Box */			
			newSelect += "<div onClick=\"viewOptionLayer('"+ objId + "')\" style='cursor:hand; border:1px solid #d3d3d3;' onMouseOut=\"setMousePosition('out')\">";
			newSelect += "		<table cellpadding='0' cellspacing='0' border='0' class='"+cssArray.selectBor+"'>";
			newSelect += "			<tr>";
			newSelect += "				<td><div id='" + objId + "selectBoxSelectedValue' class='"+cssArray.selectBoxSelectedArea+"' style='width:" + (selectBoxWidth - downArrowSrcWidth + 0) + "px;height:" + (selectBoxHeight - 0) + "px;overflow:hidden;' onBlur=\"selectBoxBlur('" + objId + "', "+cssArray.cssArrayName+")\"></div></td>";
			newSelect += "				<td><img src='" + downArrowSrc + "' width='" + downArrowSrcWidth + "' border='0'></td>";
			newSelect += "			</tr>";
			newSelect += "		</table>";
			newSelect += "</div>";
			
			document.write(newSelect);

			var haveSelectedValue = false;
			for (var i=0 ; i < obj.options.length ; i++) {
				if (obj.options[i].selected == true) {
					haveSelectedValue = true;
					settingValue(objId,obj.options[i].text);
				}
			}
			if (!haveSelectedValue) settingValue(objId,obj.options[0].text);
		}
		//ÀÌ¹ÌÁö·Î µÈ ¼¿·ºÆ® ³¡

		function makeSelectBox_01(thisId, cssArray, showDivID) {
			var downArrowSrc = cssArray.selectImage;		//¿À¸¥ÂÊ È­»ìÇ¥ÀÌ¹ÌÁö
			var downArrowSrcWidth = cssArray.selectwidth;	//¿À¸¥ÂÊ È­»ìÇ¥ÀÌ¹ÌÁö width
			var selectPad = cssArray.selectPad;
			var optionHeight = 21;  //option ÇÏ³ªÀÇ ³ôÀÌ
			var optionMaxNum = 10; // ÇÑ¹ø¿¡ º¸¿©Áö´Â optionÀÇ °¹¼ö
			var optionInnerLayerHeight = "";
			var optionInnerLayerWidth = "";
			var objId = thisId;
			var obj = document.getElementById(objId);
			//var optionHeight = parseInt(obj.style.height);
			var selectBoxWidth = parseInt(obj.style.width);
			var selectBoxHeight = parseInt(obj.style.height);
			
			if (obj.options.length > optionMaxNum) 
			{
				optionInnerLayerWidth  = (selectBoxWidth + 5 - 16);
				optionInnerLayerHeight = "height:"+ (optionHeight * optionMaxNum) + "px";
			}else
			{
				optionInnerLayerWidth  = "100%";
			}

/* ¸®½ºÆ® ¹Ú½º */
			newSelect  = "<table id='" + objId + "selectBoxOptionLayer' cellpadding='0' cellspacing='0' border='0' style='position:absolute;z-index:100;display:none; border:1px solid #d3d3d3;' onMouseOver=\"viewOptionLayer('"+ objId + "')\" onMouseOut=\"setMousePosition('out')\">";
			newSelect += "	<tr>";
			newSelect += "		<td height='" + (selectBoxHeight + 0) + "' style='cursor:hand;' onClick=\"hideOptionLayer('"+ objId + "')\"></td>";
			newSelect += "	</tr>";
			newSelect += "	<tr>";
			newSelect += "		<td class='"+cssArray.selectPad+"'>";
			newSelect += "		<div id='"+ objId + "SelectBoxOptionArea' class='"+cssArray.selectBoxOptionInnerLayer+"' style='width:" + (selectBoxWidth) + "px;" + optionInnerLayerHeight + "'>\n";
			newSelect += "		<table cellpadding='0' cellspacing='0' border='0' width='" + optionInnerLayerWidth + "' style='table-layout:fixed;word-break:break-all;'>";
	for (var i=0 ; i < obj.options.length ; i++) {
		var nowValue = obj.options[i].value;
		var nowText = obj.options[i].text;
		if (nowValue != null && nowValue != "") {	// value°¡ ¾ø°Å³ª ºó°ªÀÌ¸é ÀÎµ¦½º·Î Ãë±ÞÇÏ°í »Ñ·ÁÁÖÁö ¾Ê°ÔÇÔ.
			newSelect += "			<tr>";
			newSelect += "				<td height='" + optionHeight + "' class='"+cssArray.selectBoxOption+"' onMouseOver=\"this.className='"+cssArray.selectBoxOptionOver+"'\" onMouseOut=\"this.className='"+cssArray.selectBoxOption+"'\" onClick=\"selectThisValue('"+ objId + "'," + i + ",'" + nowValue + "','" + nowText + "', "+cssArray.cssArrayName+")\" style='cursor:hand;'>" + nowText + "</td>";
			newSelect += "				<input type='hidden' id='"+ objId + "SelectBoxOptionValue" + i + "' value='" + nowValue + "'>";
			newSelect += "			</tr>";
		}
	}
			newSelect += "		</table>";
			newSelect += "		</div>";
			newSelect += "		</td>";
			newSelect += "	</tr>";
			newSelect += "</table>";
/* Select Box */			
			newSelect += "<div onClick=\"viewOptionLayer('"+ objId + "')\" style='cursor:hand; border:1px solid #d3d3d3;' onMouseOut=\"setMousePosition('out')\">";
			newSelect += "		<table cellpadding='0' cellspacing='0' border='0' class='"+cssArray.selectBor+"'>";
			newSelect += "			<tr>";
			newSelect += "				<td><div id='" + objId + "selectBoxSelectedValue' class='"+cssArray.selectBoxSelectedArea+"' style='width:" + (selectBoxWidth - downArrowSrcWidth + 0) + "px;height:" + (selectBoxHeight - 0) + "px;overflow:hidden;' onBlur=\"selectBoxBlur('" + objId + "', "+cssArray.cssArrayName+")\"></div></td>";
			newSelect += "				<td><img src='" + downArrowSrc + "' width='" + downArrowSrcWidth + "' border='0'></td>";
			newSelect += "			</tr>";
			newSelect += "		</table>";
			newSelect += "</div>";
			
			//document.write(newSelect);
			document.getElementById(showDivID).innerHTML = newSelect;

			var haveSelectedValue = false;
			for (var i=0 ; i < obj.options.length ; i++) {
				if (obj.options[i].selected == true) {
					haveSelectedValue = true;
					settingValue(objId,obj.options[i].text);
				}
			}
			if (!haveSelectedValue) settingValue(objId,obj.options[0].text);
		}
		//ÀÌ¹ÌÁö·Î µÈ ¼¿·ºÆ® ³¡


//Ç®´Ù¿î ¸®½ºÆ® ½ÃÀÛ
var prevMenu;

function showhide(currMenu)
{
	var menu;
	
	menu=eval("document.all."+currMenu+".style");

	// ±âÁ¸ÀÇ ¸Þ´º¸¦ Off½ÃÅ²´Ù
	if (prevMenu!=null && prevMenu!=menu)
	{
		prevMenu.display="none";
	}

	if (menu.display=="none")
	{
		menu.display="block";
	}
	else
	{
		menu.display="none";
	}

	// ÀÌÀü °´Ã¼
	prevMenu=menu;
}
//Ç®´Ù¿î ¸®½ºÆ® ³¡
