function bluring(){
	if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;

function showGlobalSub(num, total) {
	for(var i=1;i<total;i++)
	{
		if(i == num) continue;
		document.getElementById('globalSub'+i).style.display = 'none';
	}
	//root°¡ ¾Æ´Ï¸é ÇÏÀ§¸Þ´º º¸¿©ÁÜ
	if(num!=0)
		document.getElementById('globalSub'+num).style.display = 'inline';
}

//Flash Resize - last.20090224
function localMenuResize(W, H) {
	document.getElementById("localMenu").style.width= W+"px";
	document.getElementById("localMenu").style.height= H+"px";
	document.getElementById("localMenuFlash").style.height= H+"px";
}
