function OpenMyPage()
{
     window.open('', '_mypage', 'width=1024,height=768,resizable=yes,scrollbars=yes');
}


function global(obj){
	if (obj == 1) {
		document.getElementById("f_global").style.display = "block";
	}else if (obj == 2)	{
		document.getElementById("f_global").style.display = "none";
	}
}

function brand(obj){
	if (obj == 1) {
		document.getElementById("f_brand").style.display = "block";
	}else if (obj == 2)	{
		document.getElementById("f_brand").style.display = "none";
	}
}

function autoBlur(){
	try{
		if(event.srcElement.tagName=='A'||event.srcElement.tagName=='IMG') document.body.focus();
	}catch(e) {}
}
document.onfocusin=autoBlur;