//Ä«Å×°í¸® Æ®¸® Å¬¸¯
function clickCategoryTree(CAT_ID, CAT_KIND)
{
	if(document.all['CAT_' + CAT_ID] != null)
	{
		if(document.all['CAT_' + CAT_ID].style.display == '')
		{
			document.all['CAT_' + CAT_ID].style.display = 'NONE';
				
			if(CAT_KIND == 1)
				document.all['ICO_' + CAT_ID].src = "/img/menu_icon_01.gif";
			else
				document.all['ICO_' + CAT_ID].src = "/img/menu_icon_03.gif";
		}
		else
		{
			document.all['CAT_' + CAT_ID].style.display = '';
				
			if(CAT_KIND == 1)
				document.all['ICO_' + CAT_ID].src = "/img/menu_icon_02.gif";
			else
				document.all['ICO_' + CAT_ID].src = "/img/menu_icon_04.gif";
		}
	}
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò µ¥ÀÌÅÍ µî·Ï
function writeBikeLaboratory()
{
	var formName = document.writeBikeLaboratoryForm;
		
	var isSelCat = false;
	//Ä«Å×°í¸® ¼±ÅÃ¿©ºÎ
	for(var i = 0; i < formName.CAT_CODE.length; i++)
	{
		if(formName.CAT_CODE[i].checked)
		{
			isSelCat = true;
			break;
		}
	}
		
	if(!isSelCat)
	{
		window.alert("Ä«Å×°í¸®¸¦ ¼±ÅÃÇØ ÁÖ½Ê½Ã¿À.");
		return;
	}
	//Á¾·ù ¼±ÅÃ¿©ºÎ
	if(!isExist(formName.CK_CODE.value))
	{
		window.alert("Á¾·ù¸¦ ¼±ÅÃÇØ ÁÖ½Ê½Ã¿À.");
		formName.CK_CODE.focus();
		return;
	}
	var isSelBrand = false;
	//ºê·£µå ¼±ÅÃ¿©ºÎ
	for(var i = 0; i <= formName.BRAND_CODE.length; i++)
	{
		if(formName.BRAND_CODE[i].checked)
		{
			isSelBrand = true;
			break;
		}
	}
		
	if(!isSelBrand && !formName.BRAND_CODE.checked)
	{
		window.alert("ºê·£µå¸¦ ¼±ÅÃÇØÁÖ½Ê½Ã¿À.");
		return;
	}
	//Á¦¸ñ ÀÔ·Â¿©ºÎ
	if(!isExist(formName.TITLE.value))
	{
		window.alert("Á¦¸ñÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		formName.TITLE.focus();
		return;
	}
	//»ó¼¼¼³¸íÀÔ·Â¿©ºÎ
	if(!formName.JwWebEdit.IsInput)
	{
		window.alert("³»¿ëÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		return;
	}
	//»ó¼¼¼³¸í ÀÌ¹ÌÁöÆÄÀÏ¾÷·Îµå
	formName.JwWebEdit.ImgFileReadUrl = formName.ImgFileReadUrl.value;

	if(formName.JwWebEdit.HttpSendImg(formName.EditorUploadFile.value) < 0)
	{
		alert(formName.JwWebEdit.GetHTTPErrText());
		return false;
	}
	//»ó¼¼¼³¸í ÀÌ¹ÌÁö¿ÜÆÄÀÏ ¾÷·Îµå	
	formName.JwWebEdit.MFFileReadUrl = formName.MFFileReadUrl.value;
			
	if(formName.JwWebEdit.HttpSendMediaFlash(formName.EditorUploadFile.value) < 0)
	{
		alert(formName.JwWebEdit.GetHTTPErrText());
		return false;
	}
		
	formName.DETAIL.value = formName.JwWebEdit.BodyHtml;
		
	formName.action = "bl_write.asp";
	formName.submit();
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò °Ë»ö
function BL_Search_Now()
{
	var formName = document.BL_SearchForm;
	
	if(isExist(formName.TOP_CAT.value) || isExist(formName.L_CAT.value) || isExist(formName.M_CAT.value) || isExist(formName.S_CAT_value) || isExist(formName.S_KEYWORD.value))
	{
		if(!formName.S_REPEAT.checked)
		{
			formName.S_TITLE_2.value = "";
			formName.S_CONTENT_2.value = "";
			formName.S_KEYWORD_2.value = "";
		}
		
		formName.submit();
	}
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò ÄÚ¸àÆ® ÀÛ¼º
function writeBLComment()
{
	var formName = document.BLCommentWriteForm;
	
	if(!isExist(formName.BL_COMMENT.value))
	{
		window.alert("³»¿ëÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		formName.BL_COMMENT.focus();
		return;
	}
	
	formName.submit();
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò ÄÚ¸àÆ® »èÁ¦
function delBLComment(BLC_CODE, PARAMETER)
{
	if(confirm("Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î?"))
	{
		location.href = "bl_comment_del.asp?BLC_CODE=" + BLC_CODE + "&PARAMETER=" + PARAMETER;
	}
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò µ¥ÀÌÅÍ ¼öÁ¤
function modifyBikeLaboratory()
{
	var formName = document.modifyBikeLaboratoryForm;
		
	var isSelCat = false;
	//Ä«Å×°í¸® ¼±ÅÃ¿©ºÎ
	for(var i = 0; i < formName.CAT_CODE.length; i++)
	{
		if(formName.CAT_CODE[i].checked)
		{
			isSelCat = true;
			break;
		}
	}
		
	if(!isSelCat)
	{
		window.alert("Ä«Å×°í¸®¸¦ ¼±ÅÃÇØ ÁÖ½Ê½Ã¿À.");
		return;
	}
	//Á¾·ù ¼±ÅÃ¿©ºÎ
	if(!isExist(formName.CK_CODE.value))
	{
		window.alert("Á¾·ù¸¦ ¼±ÅÃÇØ ÁÖ½Ê½Ã¿À.");
		formName.CK_CODE.focus();
		return;
	}
	
	var isSelBrand = false;
	//ºê·£µå ¼±ÅÃ¿©ºÎ
	for(var i = 0; i <= formName.BRAND_CODE.length; i++)
	{
		if(formName.BRAND_CODE[i].checked)
		{
			isSelBrand = true;
			break;
		}
	}
		
	if(!isSelBrand && !formName.BRAND_CODE.checked)
	{
		window.alert("ºê·£µå¸¦ ¼±ÅÃÇØÁÖ½Ê½Ã¿À.");
		return;
	}

	//Á¦¸ñ ÀÔ·Â¿©ºÎ
	if(!isExist(formName.TITLE.value))
	{
		window.alert("Á¦¸ñÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		formName.TITLE.focus();
		return;
	}
	//»ó¼¼¼³¸íÀÔ·Â¿©ºÎ
	if(!formName.JwWebEdit.IsInput)
	{
		window.alert("³»¿ëÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		return;
	}
	//»ó¼¼¼³¸í ÀÌ¹ÌÁöÆÄÀÏ¾÷·Îµå
	formName.JwWebEdit.ImgFileReadUrl = formName.ImgFileReadUrl.value;

	if(formName.JwWebEdit.HttpSendImg(formName.EditorUploadFile.value) < 0)
	{
		alert(formName.JwWebEdit.GetHTTPErrText());
		return false;
	}
	//»ó¼¼¼³¸í ÀÌ¹ÌÁö¿ÜÆÄÀÏ ¾÷·Îµå	
	formName.JwWebEdit.MFFileReadUrl = formName.MFFileReadUrl.value;
			
	if(formName.JwWebEdit.HttpSendMediaFlash(formName.EditorUploadFile.value) < 0)
	{
		alert(formName.JwWebEdit.GetHTTPErrText());
		return false;
	}
		
	formName.DETAIL.value = formName.JwWebEdit.BodyHtml;
		
	formName.action = "bl_modify.asp";
	formName.submit();
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò µ¥ÀÌÅÍ »èÁ¦
function delBLData(BL_CODE, PARAMETER)
{
	if(confirm("Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î?"))
	{
		location.href = "bl_del.asp?BL_CODE=" + BL_CODE + "&PARAMETER=" + PARAMETER;
	}
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò °ü·Ã¸®½ºÆ®ÅÇ Å¬¸¯
function selRelationList(tabKind)
{
	if(tabKind == 1)
	{
		RELATION_TAB_1.src = "img/tab_02_1.gif";
		RELATION_TAB_2.src = "img/tab_03_2.gif";
		RELATION_TAB_3.src = "img/tab_01_2.gif";
		document.all['RELATION_01'].style.display = "";
		document.all['RELATION_02'].style.display = "NONE";
		document.all['RELATION_03'].style.display = "NONE";
	}
	else if(tabKind == 2)
	{
		RELATION_TAB_1.src = "img/tab_02_2.gif";
		RELATION_TAB_2.src = "img/tab_03_1.gif";
		RELATION_TAB_3.src = "img/tab_01_2.gif";
		document.all['RELATION_01'].style.display = "NONE";
		document.all['RELATION_02'].style.display = "";
		document.all['RELATION_03'].style.display = "NONE";
	}
	else if(tabKind == 3)
	{
		RELATION_TAB_1.src = "img/tab_02_2.gif";
		RELATION_TAB_2.src = "img/tab_03_2.gif";
		RELATION_TAB_3.src = "img/tab_01_1.gif";
		document.all['RELATION_01'].style.display = "NONE";
		document.all['RELATION_02'].style.display = "NONE";
		document.all['RELATION_03'].style.display = "";
	}
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò ÄÚ¸àÆ® ´çÃ·ÀÚ ¼±Á¤
function BLCommentGiftSelect(MEM_NICK, BLC_CODE, PARAMETER)
{
	if(confirm("[" + MEM_NICK + "]´ÔÀ» ´çÃ·ÀÚ·Î ¼±Á¤ÇÏ½Ã°Ú½À´Ï±î?"))
	{
		location.href = "bl_comment_select.asp?BLC_CODE=" + BLC_CODE + "&PARAMETER=" + PARAMETER;
	}
}
//¹ÙÀÌÅ© ¿¬±¸¼Ò ÄÚ¸àÆ® ´çÃ·ÀÚ ¼±Á¤Ãë¼Ò
function BLCommentGiftSelectCancel(BLC_CODE, PARAMETER)
{
	if(confirm("´çÃ·À» Ãë¼ÒÇÏ½Ã°Ú½À´Ï±î?"))
	{
		location.href = "bl_comment_select_cancel.asp?BLC_CODE=" + BLC_CODE + "&PARAMETER=" + PARAMETER;
	}
}