	// ·¹ÀÌ¾î ±âº» ÄÁÆ®·Ñ 
	function show(id){
		obj=document.getElementById(id);
		obj.style.display="block";
	}
	function hide(id){
		obj=document.getElementById(id);
		obj.style.display="none";
	}
	
// ·Î±×ÀÎ ºñÈ°¼ºÈ­ ·¹ÀÌ¾î=====================================================
	function show_visible_none(){
		show("visible_none");
	} 
	function hide_visible_none(){
		hide("visible_none");
	} 
	// ·Î±×ÀÎ ÇÁ·¹ÀÓ ·¹ÀÌ¾î================================================
	function show_login(){
		show_visible_none();	
		show("frame_login");
	} 
	function hide_login(){
		hide_visible_none();	
		hide("frame_login");
	}
	
	// ¸µÅ© ================================================
	function goUrl(Url){
		location.href = Url
	}

	// Language ================================================
	function viewLang(){
 			show('langFull');
			hide('lang');
	}

	function hideLang(){
 			hide('langFull');
			show('lang');
	}

	// »çÈ¸Àû Ã¥ÀÓ ================================================
	function viewSocial(){
 			show('socialFull');
			hide('social');
	}

	function hideSocial(){
 			hide('socialFull');
			show('social');
	}

	// ÆË¾÷ ================================================
	function openPop(url,w,h,top,left) { 
		window.open('/popup/pop_'+url+'.jsp','','width='+w+',height='+h+',top='+top+',left='+left+',scrollbars=yes');
	}


	function openTopNavi(){
		document.getElementById('topNavi').className = "ht130"
		//alert("25");
	}

	function closeTopNavi(){
		document.getElementById('topNavi').className = "ht25"
		//alert("130");
	}

	function lnb1Depth(){
		for(i=1; i<7; i++){	
			document.getElementById('lnb3_1'+i).style.display = "none"
		}
	}



//ÀÌ¹ÌÁöÅõ¸í°ª¼³Á¤=======================================================
	function setPng24(obj) { 
    obj.width=obj.height=1; 
    obj.className=obj.className.replace(/\bpng24\b/i,''); 
    obj.style.filter = 
    "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');" 
    obj.src='';  
    return ''; 
}
