function navigation(naviId, name, link, order) 
{
	this.naviId = naviId;
	this.name = name;
	this.link = link;
	this.order = order;
	this.childPool = new Array();

	this.add = function (childPool) {
		this.childPool[this.childPool.length] = childPool;
	}
}

function getLink(lang, depth1, depth2, depth3)
{
	var rootObj
	if (lang == "eng") {
		rootObj = NAVIPOOL["2"];
	} else {
		rootObj = NAVIPOOL["3"];
	}

	var nodeObj = rootObj;
	// 1depth
	if (depth1 > 0) {
		if (nodeObj.childPool[depth1-1] != null) nodeObj = nodeObj.childPool[depth1-1];
		
		// 2depth
		if (depth2 > 0) {
			if (nodeObj.childPool[depth2-1] != null) nodeObj = nodeObj.childPool[depth2-1];

			// 3depth
			if (depth3 > 0) {
				if (nodeObj.childPool[depth3-1] != null) nodeObj = nodeObj.childPool[depth3-1];
			}
		}
	}
//	alert(depth1+""+depth2+""+depth3);
//	alert(nodeObj.link);

	return nodeObj.link;
}

function gotoUrlEng(depth1, depth2, depth3)
{
//alert(depth1+":"+depth2+":"+depth3);
	location.href = getLink("eng", depth1, depth2, depth3);
}

function gotoUrlKor(depth1, depth2, depth3)
{
//alert(depth1+":"+depth2+":"+depth3);
	location.href = getLink("kor", depth1, depth2, depth3);
}

function gotoKorean()
{
//	window.open("http://www.aceteq.co.kr/kor/", "ace_kor", "");
	location.href="/kor/";
}

function gotoEnglish()
{
//	window.open("http://www.aceteq.co.kr/eng/", "ace_eng", "");
	location.href="/eng/";
}

function gotoChinese()
{
	window.open("/chi/popup.html", "", "width=900px,height=600px");
}

function getQuickLink(lang, depth1, depth2, depth3)
{
	var rootObj;
	var style, classStr;
	var str;
	if (lang == "eng") { // ¿µ¹®
		rootObj = NAVIPOOL["2"];
		style = "style='font-size:10px'";
		classStr = "class='location02'";
		str = "<a href='/eng/' "+style+">HOME</a>";
	} else if (lang == "kor") { // ±¹¹®
		rootObj = NAVIPOOL["3"];
		style = "style='font-size:11px'";
		classStr = "class='location02'";
		str = "<a href='/kor/' "+style+">HOME</a>";
	}

	var nodeObj = rootObj;
	var tmpStr
	// 1depth
	if (depth1 > 0) {
		if (nodeObj.childPool[depth1-1] != null) {
			nodeObj = nodeObj.childPool[depth1-1];
			tmpStr = " <a href='"+nodeObj.link+"' "+style+">" + nodeObj.name + "</a>";
		}
		
		// 2depth
		if (depth2 > 0) {
			if (nodeObj.childPool[depth2-1] != null) {
				nodeObj = nodeObj.childPool[depth2-1];
				str += " > " + tmpStr;
				tmpStr = " <a href='"+nodeObj.link+"' "+style+">" + nodeObj.name + "</a>";

			}

			// 3depth
			if (depth3 > 0) {
				if (nodeObj.childPool[depth3-1] != null) {
					nodeObj = nodeObj.childPool[depth3-1];
					str += " > " + tmpStr;
					str += " > <a href='"+nodeObj.link+"' "+style+" "+classStr+">" + nodeObj.name + "</a>";
				}
			} else {
				str += " > " + " <a href='"+nodeObj.link+"' "+classStr+">" + nodeObj.name + "</a>";
			}

		} else {
			str += " > " + " <a href='"+nodeObj.link+"' "+classStr+">" + nodeObj.name + "</a>";
		}

	}

	return str;
}

// Á¦Ç° »ó¼¼ ÆäÀÌÁö - ¿µ¹®
function productView(prd_id)
{
	window.open("/common/product/view.asp?prd_id="+prd_id, "productView", "toolbars=0, menubars=0, status=0, scrollbars=yes, width=617, height=700, top=100, left=300");
}

// Á¦Ç° »ó¼¼ ÆäÀÌÁö
function productViewKor(prd_id)
{
	window.open("/common/product/view.asp?prd_id="+prd_id, "productView", "toolbars=0, menubars=0, status=0, scrollbars=yes, width=617, height=700, top=100, left=300");
}

// D-ACE Áöµµ ÆË¾÷
function goFamilySite(code) 
{
	if (code == "AT_KOR") {
		location.href = "http://www.aceteq.co.kr/kor/";
	} else if (code == "AT_ENG") {
		location.href = "http://www.aceteq.co.kr/eng/";
	} else if (code == "AA_KOR") {
			location.href = "http://www.aceantenna.co.kr/kor/";
	} else if (code == "AA_ENG") {
		location.href = "http://www.aceantenna.co.kr/eng/";
	} else if (code == "DACE_KOR"){
		window.open("/kor/about/company/global/worldwide_map01.asp", "DACE_KOR", "width=585, height=600")
	} else if (code == "DACE_ENG"){
		window.open("/eng/about/company/global/worldwide_map01.asp", "DACE_ENG", "width=585, height=600")
	}
} 
