<!-- 
function depth_1(id_num,total_num){
	var imgsrc = "";
	for(var i=1; i < 6; i++){
		if(id_num == i){
			document.getElementById("depth_1_"+i).src = "/img/common/gnb_ti0"+i+"_on.gif";
			document.getElementById("header_gnb_2depth_S"+i+"_dl").style.display = "block";
		}else{
			document.getElementById("depth_1_"+i).src = "/img/common/gnb_ti0"+i+".gif";
			document.getElementById("header_gnb_2depth_S"+i+"_dl").style.display = "none";
		}
	}
	for(var j=1; j <= total_num; j++){
		document.getElementById("depth_2_"+id_num+"_"+j).src = "/img/common/gnb_ti0"+id_num+""+j+".gif";
	}
	
}

function depth_2(num1,num2,total_num){
	var imgsrc = "";
	for(var i=1; i <= total_num; i++){
		if(num2 == i){
			document.getElementById("depth_2_"+num1+"_"+i).src = "/img/common/gnb_ti0"+num1+""+i+"_on.gif";			
		}else{
			document.getElementById("depth_2_"+num1+"_"+i).src = "/img/common/gnb_ti0"+num1+""+i+".gif";
		}
	}	
}
function window_center_scroll(sw,sh,url){ 
cw=screen.availWidth; //화면 너비 
ch=screen.availHeight; //화면 높이 
ml=(cw-sw)/2;//가운데 띄우기위한 창의 x위치 
mt=(ch-sh)/2;//가운데 띄우기위한 창의 y위치 
selfID = window.open(url,'win','width='+sw+',height='+sh+',top='+mt+',left='+ml+',resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no'); selfID.opener = self; selfID.focus(); }

function fnc_td_Print() {
//		alert(document.getElementById("page_printing").innerHTML);
	

	var tempBody;

	window.onbeforeprint = function() {

	tempBody = document.body.innerHTML;

	document.body.innerHTML = document.getElementById("page_printing").innerHTML;

	}

	window.onafterprint = function() {

	document.body.innerHTML = tempBody;

	}

	window.print();
}
// -->