//팝업 띠우기.
function MM_openBrWindow(theURL,winName,features) { //v2.0
	PopupWindow = window.open(theURL,winName,features);
}
//블로그 User 로그인
function blogLogin(){
	var cookie = document.cookie;
	var cookieblogid = "";
	if(cookie!=null){
		if(cookie.indexOf("BlogSessionUserID")==-1){
			//MM_openBrWindow("http://www.ypbooks.co.kr/login.yp?targetpage=login_pop_01&pageflag=blog",'login_pop','width=596,height=320');
			document.location="http://www.ypbooks.co.kr/login.yp?req_type=5";
		}else{
			//이미 로그인 사용자 페이지 이동 위치 설정.
		document.location="http://blog.ypbooks.co.kr:8080/index.jsp";
		}
	}
}
//로그인 끝

//블로그 User 로그 아웃.
function blogLogout(){
	document.iframeForm.submit();
}
//로그아웃 끝.
