
//----------------------------------------------------------
// 특정 Object의 Focus를 강제 해제
//----------------------------------------------------------
function ProcBluring()
{
	if ( event.srcElement.tagName == "A" || event.srcElement.tagName == "IMG" )
		document.body.focus();
}
document.onfocusin = ProcBluring;


//----------------------------------------------------------
// 주소를 이동
//----------------------------------------------------------
function MovePage( strUrl )
{
	location.href = strUrl;
}


//----------------------------------------------------------
// 로그인 창을 보여주기
//----------------------------------------------------------
function OpenSignInForm()
{
	jQuery("#SignInFormBackground").show();
	jQuery("#SignInFormWrap").show();
	document.frmSignInForm.user_id.focus();
}


//----------------------------------------------------------
// 로그인 창을 숨기기
//----------------------------------------------------------
function CloseSignInForm()
{
	jQuery("#SignInFormBackground").hide();
	jQuery("#SignInFormWrap").hide();
}


//----------------------------------------------------------
// 로그인 창을 숨기기
//----------------------------------------------------------
function CloseSignInForm()
{
	jQuery("#SignInFormBackground").hide();
	jQuery("#SignInFormWrap").hide();
}

