//访问对应的信箱写信页，回信页和收藏页
function runToPage(mId, mPage) {
	$("#interbox").attr("src","/sse-international-web/front/ui/" + mPage+ "?mailboxId=" + mId);
	if (mPage != "allLetterList") {
		checkIsLogin(true);
	}
}
//访问对应的信件详细页
function runToInfoPage(mId, mPage) {
	$("#interbox").attr("src","/sse-international-web/front/ui/" + mPage+ "?letterId=" + mId);
	//checkIsLogin(true);
}

//首页跳转入互动中心的服务信箱页面
function letterManage(id, op) {
	location.href = "/hdzx/fwxx/index.shtml?mId=" + id + "&mPage=" + op;
}
