/******************************************************************************

 ******************************************************************************/

//-----------------------------------------------------------------------------
// ´ëºÐ·ù¿¡ µû¸¥ ¼ÒºÐ·ù ÆäÀÌÁö·Î ÀÌµ¿
//-----------------------------------------------------------------------------
function f_code(code1, code2, name1, name2) 
{
	var rtn_cd = true;

	document.goods_list.A_CODE1.value = code1;
	document.goods_list.A_NAME1.value = name1;
	document.goods_list.A_CODE2.value = code2;
	document.goods_list.A_NAME2.value = name2;
	goods_list.submit();

	return rtn_cd;
}

//-----------------------------------------------------------------------------
// »óÇ°»ó¼¼º¸±â·Î ÀÌµ¿
//-----------------------------------------------------------------------------
function f_location(code, obj) 
{
	var rtn_cd = true;

	if(obj == '10' || obj == '30' || obj == '35')
	{
		document.goods_list.action = "goods_view.php";
	}
	else if(obj == '20')
	{
		document.goods_list.action = "goods_view_opening.php";
	}
	else if(obj == '25')
	{
		document.goods_list.action = "goods_view_buffet.php";
	}
	else
	{
		document.goods_list.action = "goods_view_sijae.php";
	}

	document.goods_list.G_CODE.value  = code;

	goods_list.submit();

	return rtn_cd;
}

//-----------------------------------------------------------------------------
// ´ëºÐ·ù¼±ÅÃ½Ã ¼ÒºÐ·ù º¸ÀÌ°Ô 
//-----------------------------------------------------------------------------
function f_checkmenu(code) 
{
	if ('' != eval("VIEW_"+code+".style.display"))
	{
		eval("VIEW_"+code+".style.display = ''");
	} else
	{
		eval("VIEW_"+code+".style.display = 'none'");
	}
}

//-----------------------------------------------------------------------------
// »õÃ¢ ¾Ë¸²
//-----------------------------------------------------------------------------
function f_popup_view() 
{
	var rtn_cd = true;
	var w_width  = 100;
	var w_height = 100;
	var w_left   = (screen.width-w_width)/2;
	var w_top    = (screen.height-w_height)/2;

	window.open('popup_view.php',
					'»õÃ¢¾Ë¸²',
					'scrollbars=no,width='+w_width+',height='+w_height+',top='+w_top+',left='+w_left);

	return rtn_cd;
}