 function GoToNotice() {
	var get_url;

	get_url = "/blogger/ajax/blog_manage.asp?f_name=CheckBlogger";

	GetAjaxInfoA(true,get_url,"GoToNotice_result");
 }

 function GoToNotice_result(msg) {
    var arrValue;

	arrValue = msg.split("[sp]");
	if(parseInt(arrValue[0])==0) {
	   if(confirm(arrValue[1])) {
	      location.href = "https://www.style.co.kr/authen/login.asp?ref_url=/blogger/notice.asp?menu_id=01030400";
	   }
	   return;
	} else if(parseInt(arrValue[0]) < 0) {
	  alert(arrValue[1]);
	  return;
	}

	location.href = "/blogger/notice.asp?menu_id=01030400";
 }
