// ########## 레이어 보기 , 닫기
function show_div_on(div_name){
	document.getElementById(div_name).style.display = "block";
}
function show_div_off(div_name){
	document.getElementById(div_name).style.display = "none";
}

// ########## 팝업창 띄우기
function popup_load(url,int_width,int_height,type) {
	window.open(url ,  "openWin", "width="+int_width+",height="+int_height+",top=30,left=100,resizable=no,scrollbars="+type) ;
}
function popup_load2(url,int_width,int_height,type) {
	window.open(url ,  "openWin", "width="+int_width+",height="+int_height+",top=20,left=20,resizable=yes,scrollbars="+type) ;
}

// ########## 팝업 창 닫기
function pop_close(){
	self.close();
}

// ########## div 열기/닫기
function view_div(val){
	if(document.getElementById(val).style.display == 'none'){
		document.getElementById(val).style.display = '';
	}else{
		document.getElementById(val).style.display = 'none';
	}
}






