//ÀÌ¹ÌÁöº¸±â
function viewGoodsImage(imagePath, imageWidth, imageHeight)
{
	ImageLayer.innerHTML = "<img src='" + imagePath + "' width='" + imageWidth + "' height='" + imageHeight + "'>";
}
//¹°Ç°¹®ÀÇµî·Ï
function registInquiry()
{
	var formName = document.InquiryRegistForm;
	
	//Á¦¸ñÀÔ·Â¿©ºÎ
	if(!isExist(formName.I_TITLE.value))
	{
		window.alert("Á¦¸ñÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		formName.I_TITLE.focus();
		return;
	}
	//³»¿ëÀÔ·Â¿©ºÎ
	if(!isExist(formName.I_CONTENT.value))
	{
		window.alert("³»¿ëÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		formName.I_CONTENT.focus();
		return;
	}
	
	formName.action = "goods_inquiry_regist.asp";
	formName.submit();
}
//¹°Ç°¹®ÀÇ ´äº¯µî·ÏÆû º¸ÀÌ±â
function InquiryReply(INR_CODE)
{
	document.all['I_REPLY_TABLE'].style.display = "";
	document.InquiryReplyRegistForm.INR_CODE.value = INR_CODE;
}
//¹°Ç°¹®ÀÇµî·Ï
function registInquiryReply()
{
	var formName = document.InquiryReplyRegistForm;
	
	//´äº¯ÀÔ·Â¿©ºÎ
	if(!isExist(formName.IR_CONTENT.value))
	{
		window.alert("´äº¯ ³»¿ëÀ» ÀÔ·ÂÇØÁÖ½Ê½Ã¿À.");
		formName.IR_CONTENT.focus();
		return;
	}
	
	formName.action = "goods_inquiry_reply_regist.asp";
	formName.submit();
}
//°ü½É¹°Ç°µî·Ï
function RegistFavoriteGoods(intKind, GDS_CODE)
{
	var formName;
	
	if(intKind == 1)
		formName = document.GoodsListForm;
	else if(intKind == 2)
		formName = document.GoodsDetailForm;
		
	if(intKind != 3)
	{
		var isSelGoods = false;
	
		if(intKind == 1)
		{
			for(var i = 0; i < formName.GDS_CODE.length; i++)
			{
				if(formName.GDS_CODE[i].checked)
				{
					isSelGoods = true;
					break;
				}
			}	
		}
		else
			isSelGoods = true;
			
		if(!isSelGoods)
		{
			window.alert("¹°Ç°À» ¼±ÅÃÇØÁÖ½Ê½Ã¿À.");
			return;
		}
		
		targetWindow = window.open("", "FAVORITE_GOODS_WIN", "left="+(screen.width-400)/2+", top="+(screen.height-220)/2+", width=400, height=220, scrollbars=0");
		targetWindow.focus();
	
		formName.target = "FAVORITE_GOODS_WIN";
		formName.action = "goods_favorite_regist.asp";
		formName.submit();
	}
	else
	{
		window.open("goods_favorite_regist.asp?GDS_CODE=" + GDS_CODE, "FAVORITE_GOODS_WIN", "left="+(screen.width-400)/2+", top="+(screen.height-220)/2+", width=400, height=220, scrollbars=0");
	}
}
//´Ü°ñÆÇ¸ÅÀÚµî·ÏÃ¢ ¿­±â
function openRegistFavoriteSellerWIn(seller)
{
	window.open("seller_favorite_regist_form.asp?SELLER=" + seller, "FAVORITE_SELLER_WIN", "width=300, height=300, scrollbars=0");
}
//´Ü°ñÆÇ¸ÅÀÚµî·Ï
function registFavoriteSeller()
{
	var formName = document.RegistFavoriteSellerForm;
	
	formName.action = "seller_favorite_regist.asp";
	formName.submit();
}
//¹°Ç°ºñ±³
function CompareGoods()
{
	var formName;

	formName = document.GoodsListForm;
	
	var intSelGoodsNum = 0;

	for(var i = 0; i < formName.GDS_CODE.length; i++)
	{
		if(formName.GDS_CODE[i].checked)
		{
			intSelGoodsNum++;
		}
	}
		
	if(intSelGoodsNum < 2)
	{
		window.alert("¹°Ç°Àº ÃÖ¼Ò 2°³ÀÌ»ó ¼±ÅÃÇØÁÖ½Ê½Ã¿À.");
		return;
	}
	
	if(intSelGoodsNum > 4)
	{
		window.alert("¹°Ç°Àº 4°³±îÁö ºñ±³°¡ °¡´ÉÇÕ´Ï´Ù.");
		return;
	}
	
	targetWindow = window.open("", "COMPARE_GOODS_WIN", "left="+(screen.width-788)/2+", top="+(screen.height-599)/2+", width=798, height=599, scrollbars=1");
	targetWindow.focus();
	
	formName.target = "COMPARE_GOODS_WIN";
	formName.action = "/goods/goods_compare.asp";
	formName.submit();
}