// ===================================================
// ¸ÞÀÎ °Ô½ÃÆÇ ÅÇ ¼±ÅÃ ½ºÅ©¸³Æ®
// ===================================================
function TabChange(obj,no,len,more)
{
	for(i = 1 ; i <=len ; i++)
	{
		tabImg		= eval("document.images['"+obj+"Tab" + i + "']") ;
		tabLayer	= eval("document.all."+obj+"List" + i) ;
		if(more) { tabMore = eval("document.all."+obj+"More" + i); }

		if( i == no)
		{
			tabImg.src = "./img/"+obj+"Tab_on_0" + i + ".gif" ;
			if(tabLayer) { tabLayer.style.display = ''; }
			if(more) { tabMore.style.display = ''; }
		}
		else
		{
			tabImg.src = "./img/"+obj+"Tab_off_0" + i + ".gif" ;
			if(tabLayer) { tabLayer.style.display = 'none'; }
			if(more) { tabMore.style.display = 'none'; }
		}
	}
}
// ============================================= ¿©±â±îÁö


// ===================================================
// ¸ÞÀÎ °Ô½ÃÆÇ ÅÇ ¸Þ´º¸µÅ©
// ===================================================
function TabLink(dest,mcode)
{
	location.href=dest+"?mnucode="+mcode;
}
// ===================================================


// ===================================================
//		°Ô½ÃÆÇ ±Û ³»¿ë À¸·Î °¡±â
// ===================================================
function viewContents(no,mode,mnucode,code)
{
	document.viewForm.no.value	= no;
	document.viewForm.mode.value	= mode;
	document.viewForm.action = "../html/sub.php?mnucode="+mnucode+"&code="+code+"&page=1";
	document.viewForm.submit();
}
// ===================================================



// ===================================================
// ÆäÀÌÁö ·Îµù½Ã ½ÇÁ¦·Î ÆË¾÷¶ç¿ì´Â ÇÔ¼ö
// ===================================================
function popupPage(popCnt,multipopCnt)
{
	if(popCnt > 0)	openPop();
	if(multipopCnt > 0)	 openMultiPop();
}

function openPop()
{
	for(i = 0 ; i < popObj.length ; i++)
	{
		if(!getCookie(popObj[i][3]))
		{
			window.open(popObj[i][0],popObj[i][1],popObj[i][2]);
		}
	}
}

function openMultiPop(url)
{
	var noticeCookie=getCookie("multipopup");  // ÄíÅ°³×ÀÓ ÁöÁ¤ ¸ÞÀÎÆË¾÷
		
	if (noticeCookie != "yes")
		window.open(multipopObj[0],'multipopup','width=350,height=400,top=0,left=0');
}
// ===================================================


// ===================================================
// ±³³»Á¤º¸°Ë»ö
// ===================================================
function checkForm(form,proc)
{
	if (form.key.value == false)
	{
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇØÁÖ¼¼¿ä");
		form.key.focus();
		return false;
	}
	else
	{
		form.action = proc;
		form.submit();
	}
}
// ===================================================