if(HEAD_CLASS!=null) {
	alert("[head.js]는 이미 include 되어있습니다!!");
}
var HEAD_CLASS = true;

function printViewedGoods(){}

function popupEvent(){}
function initLeftMenu(){}
function FLY_autoMove(){}
function moveRightEdge(){}
function init_start(){
	init();
}

//[ 바로가기 함수 ] ==================================================================================================
function goHome(){
	top.document.location = URL_ROOT + "/main.asp";
}
function goSitemap(){
	document.location = URL_ROOT + "/sitemap/sitemap.asp";
}
function goLang(lang){
	document.location = URL_ROOT + "/golang.asp?lang=" + lang;
}
function goTopLink(url){
	var a = document.createElement("a");
	document.appendChild(a);
	a.target = "_top";
	a.href = url;
	a.click();
}
function goNewLink(url){
	FFOpen(url);
}

/** For Flash menu interface *************************************************************/
function goMenuTop(menu1, menu2){
	goMenu(menu1, menu2, "", "", "", "1");
}
function goMenu(menu1, menu2, menu3, menu4, target, menuani){	
	if(menu1 == null){	menu1 = ""	}
	if(menu2 == null){	menu2 = ""	}
	if(menu3 == null){	menu3 = ""	}
	if(menu4 == null){	menu4 = ""	}
	if(target == null){	target = ""	}
	if(menuani == null) {	menuani = ""	}

	document.location = URL_ROOT + "/gomenu.asp?menu1=" + menu1 + "&menu2=" + menu2 + "&menu3=" + menu3 + "&target=" + target + "&menuani=" + menuani;
}


function isEnterDown(){
	if(event.keyCode==13){
		return true;
	}else{
		return false;	
	}
}

